Skip to content

Commit

Permalink
[ticket/11215] Uncomment rewrite rules in .htaccess
Browse files Browse the repository at this point in the history
Because we check to see if the rewrite module is available
we don't have to comment the rewrite lines

PHPBB3-11215
  • Loading branch information
imkingdavid committed Sep 2, 2013
1 parent 913e5a1 commit 1e64095
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phpBB/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Uncomment the following line if you will be using any of the URL
# rewriting below.
#
#RewriteEngine on
RewriteEngine on

#
# Uncomment the statement below if you want to make use of
Expand All @@ -18,9 +18,9 @@
# a controller is by default accessed at /app.php/my/controller, but will then
# be accessible at either /app.php/my/controller or just /my/controller
#
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)$ app.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]

#
# If symbolic links are not already being followed,
Expand Down

0 comments on commit 1e64095

Please sign in to comment.