Whats wrong with my .htaccess file?
-
I have been trying for several weeks now to setup multisite on my wordpress installation without success. I have added the provided code to my wp-config.php and .htaccess files. With help from my host I’ve setup the wildcard sub-domain. I have created a sub-domain via my Cpanel.
My host has now advise that my .htaccess file is preventing access to any new sites created using the multisite feature.
Apparently it is not generating the WordPress admin URL’s properly.
I’m simply added the code given to me during the multisite instalation shown below. Is there any reason why it might be preventing me accessing new sites or not generating URL’s properly.
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L]
Thank in advance.
Adrian
Viewing 15 replies - 1 through 15 (of 15 total)
Viewing 15 replies - 1 through 15 (of 15 total)
- The topic ‘Whats wrong with my .htaccess file?’ is closed to new replies.