diff options
author | David King <imkingdavid@gmail.com> | 2013-09-02 11:49:36 -0700 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2013-09-02 11:49:36 -0700 |
commit | 1e64095e17ca43273864aa400efed5c7e1fc0ceb (patch) | |
tree | 99341a11a4b7d824af40637eb215f5b0e098cd6d /phpBB | |
parent | 913e5a1f2e847c922f8b48e2c069ba204a976e51 (diff) | |
download | forums-1e64095e17ca43273864aa400efed5c7e1fc0ceb.tar forums-1e64095e17ca43273864aa400efed5c7e1fc0ceb.tar.gz forums-1e64095e17ca43273864aa400efed5c7e1fc0ceb.tar.bz2 forums-1e64095e17ca43273864aa400efed5c7e1fc0ceb.tar.xz forums-1e64095e17ca43273864aa400efed5c7e1fc0ceb.zip |
[ticket/11215] Uncomment rewrite rules in .htaccess
Because we check to see if the rewrite module is available
we don't have to comment the rewrite lines
PHPBB3-11215
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/.htaccess | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/.htaccess b/phpBB/.htaccess index df17b17d7d..aaaae0545d 100644 --- a/phpBB/.htaccess +++ b/phpBB/.htaccess @@ -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 @@ -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, |