Multisite (directory) on localhost: new sites "not found"
-
Hi all you smart people out there ??
I’ve just installed a WP multisite on my WAMP Localhost. The site itself is running fine ..but when creating a new subdirectory, it says “not found” when trying to access ??
My wp-config contains:
define ('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'localhost'); define('PATH_CURRENT_SITE', '/test5/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
My .htaccess contains:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /test5/ RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . /test5/index.php [L] </IfModule> # END WordPress
In my httpd.config I have changed:
AllowOverride None
toAllowOverride All
and have have uncommentedLoadModule rewrite_module modules/mod_rewrite.so
.Nothing works! ??
What gives???
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Multisite (directory) on localhost: new sites "not found"’ is closed to new replies.