From a705405717bcf64066fbe34b8fb4a8b7e85f218b Mon Sep 17 00:00:00 2001 From: Mauron Date: Sat, 6 Feb 2016 12:59:39 +0100 Subject: [PATCH] [ticket/14458] Explicitly state RewriteBase into .htaccess root file The statement RewriteBase / needs to be explicitly typed down into the .htaccess file in root in order to reduce all the support requests about the implicit statement and the URL rewriting not working. PHPBB3-14458 --- phpBB/.htaccess | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/phpBB/.htaccess b/phpBB/.htaccess index 1ae74ed825..53bce762ea 100644 --- a/phpBB/.htaccess +++ b/phpBB/.htaccess @@ -1,6 +1,16 @@ RewriteEngine on +# +# Uncomment the statement below if URL rewriting doesn't +# work properly. If you installed phpBB in a subdirectory +# of your site, properly set the argument for the statement. +# e.g.: if your domain is test.com and you installed phpBB +# in http://www.test.com/phpBB/index.php you have to set +# the statement RewriteBase /phpBB/ +# +#RewriteBase / + # # Uncomment the statement below if you want to make use of # HTTP authentication and it does not already work.