W3 Total Cache when website is run from subfolder
-
When I activate W3 total cache from a subfolder based website, I get a 500 error. How do I tell W3 that my website is located in a sub-folder?
Here is my setup:public_html
– example.com
— htaccess
– anotherwebsite.com
– anotherwebsite.com
.htaccess (root)
=========================================
my htaccess in root looks like this:
=========================================
# .htaccess main domain to subdirectory redirect
# Do not change this line.
RewriteEngine on
# Change example.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/subdirectory/
# Don’t change the following two lines.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change ‘subdirectory’ to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /subdirectory/$1
# Change example.com to be your main domain again.
# Change ‘subdirectory’ to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?example.com$
RewriteRule ^(/)?$ subdirectory/index.html [L]
- The topic ‘W3 Total Cache when website is run from subfolder’ is closed to new replies.