Network admin links wrong
-
I have invoked multisite on an existing local site. WP resides in
localhost/LOSTest/barman/
The existing site and its admin still works correctly. Admin is in at localhost/LOSTest/barman/wp-adminThe links for the Network admin resolve to localhost/LOSTest/wp-admin/network which obviously doesn’t exist.
my config resides in localhost/LOSTest/ and contains define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'localhost'); define('PATH_CURRENT_SITE', '/LOSTest/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
htaccess is also in localhost/LOSTest/ and is
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /LOSTest/barman/ RewriteRule ^index\.php$ - [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).*) barman/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ barman/$2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
I have spent many hours looking at similar topics but nothing seems to work.
Can anyone help please?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Network admin links wrong’ is closed to new replies.