Multisite Network Admin 404
-
Hello,
I’ve read through the other threads like this with similar titles, but none seem to resolve my issue.
I recently installed Multisite on a friend’s page, and his wordpress (3.61) is in a /wp/ subdirectory. After installing multisite, I can access all the dashboard stuff for his original wordpress page just fine, but for some reason the network admin pages are not picking up on that subdirectory. Instead of directing me to http://foo.com/wp/wp-admin/network/ they point me at http://foo.com/wp-admin/network/ which nets me a 404.
Here’s my htaccess
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).*) wp/$1 [L] RewriteRule ^(.*\.php)$ wp/$1 [L] RewriteRule . index.php [L]and here’s my wp-config.php multisite section:
/* Multisite */ define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'foo.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);I’ve tried changing PATH_CURRENT_SITE to /wp/ but it gets me a redirect loop (again–ONLY for network admin).
I’ve also switched themes and turned off all the plugins, but it didn’t seem to make a difference.
Anybody have any ideas about how I can get multisite to recognize that /wp/ is the WordPress directory, and that it needs to go before everything else?
The topic ‘Multisite Network Admin 404’ is closed to new replies.