mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
27 lines
566 B
ApacheConf
27 lines
566 B
ApacheConf
Options +FollowSymLinks
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
|
|
#
|
|
# Uncomment the statement below if you want to make use of
|
|
# HTTP authentication and it does not already work.
|
|
# This could be required if you are for example using PHP via Apache CGI.
|
|
#
|
|
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ app.php [QSA,L]
|
|
</IfModule>
|
|
|
|
<Files "config.php">
|
|
Order Allow,Deny
|
|
Deny from All
|
|
</Files>
|
|
|
|
<Files "common.php">
|
|
Order Allow,Deny
|
|
Deny from All
|
|
</Files>
|