Skip to content
Snippets Groups Projects
Commit a6674e22 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#118569 by bevan: document how should one set RewriteBase, if under a VirtualDocumentRoot

parent 7db4e8b7
No related branches found
No related tags found
No related merge requests found
...@@ -56,8 +56,10 @@ DirectoryIndex index.php ...@@ -56,8 +56,10 @@ DirectoryIndex index.php
<IfModule mod_expires.c> <IfModule mod_expires.c>
# Enable expirations. # Enable expirations.
ExpiresActive On ExpiresActive On
# Cache all files for 2 weeks after access (A). # Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600 ExpiresDefault A1209600
# Do not cache dynamically generated pages. # Do not cache dynamically generated pages.
ExpiresByType text/html A1 ExpiresByType text/html A1
</IfModule> </IfModule>
...@@ -78,13 +80,19 @@ DirectoryIndex index.php ...@@ -78,13 +80,19 @@ DirectoryIndex index.php
# #
# To redirect all users to access the site WITHOUT the 'www.' prefix, # To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...) # (http://www.example.com/... will be redirected to http://example.com/...)
# adapt and uncomment the following: # uncomment and adapt the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] # RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory and # Modify the RewriteBase if you are using Drupal in a subdirectory or in a
# the rewrite rules are not working properly. # VirtualDocumentRoot and the rewrite rules are not working properly.
#RewriteBase /drupal # For example if your site is at http://example.com/drupal uncomment and
# modify the following line:
# RewriteBase /drupal
#
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /
# Rewrite URLs of the form 'index.php?q=x'. # Rewrite URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment