aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMauron <Mauron@users.noreply.github.com>2016-02-06 12:59:39 +0100
committerTristan Darricau <tristan.darricau@sensiolabs.com>2016-02-07 14:46:45 +0100
commita705405717bcf64066fbe34b8fb4a8b7e85f218b (patch)
tree9b69612d4d05b159aeb5d6ab8743c9b326a2aabb /phpBB
parent8a2f564f3db0e857f382f0d0d9eb1c5281c14ec9 (diff)
downloadforums-a705405717bcf64066fbe34b8fb4a8b7e85f218b.tar
forums-a705405717bcf64066fbe34b8fb4a8b7e85f218b.tar.gz
forums-a705405717bcf64066fbe34b8fb4a8b7e85f218b.tar.bz2
forums-a705405717bcf64066fbe34b8fb4a8b7e85f218b.tar.xz
forums-a705405717bcf64066fbe34b8fb4a8b7e85f218b.zip
[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
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/.htaccess10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/.htaccess b/phpBB/.htaccess
index 1ae74ed825..53bce762ea 100644
--- a/phpBB/.htaccess
+++ b/phpBB/.htaccess
@@ -2,6 +2,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.
# This could be required if you are for example using PHP via Apache CGI.