Network Menu Missing WordPress "Own Directory"
-
Hi there,
I just set-up Network on my existing install of WordPress (3.5.1), and the menu for the Network Admin is pointing to “mydomain.com/wp-admin/network” instead of where I need it to, which is “mydomain.com/wordpress/wp-admin/network” — and I haven’t been able to figure out how to fix it. Any suggestions?
I followed the instructions in Create a Network, and I had my wordpress files in the subdirectory /wordpress/ prior to adding the multisite information to my wp-config.
The relevant bit of my wp-config is currently:
define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'cottagemagpie.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);And my .htaccess at the root is:
RewriteEngine on RewriteBase / 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).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]Any ideas? I tried just manually typing in the network address so I could gets started, but all of the links internally in that section are also missing the “/wordpress/” so none of them will work for me.
Thanks in advance!!
~Angela~
The topic ‘Network Menu Missing WordPress "Own Directory"’ is closed to new replies.