WP Mulitsite not maping netwok correcty
-
Hi,
Very new to WP so would be grateful for any help. On my GoDaddy installation I switched to a Multisite setup. My original single wp site was installed in /wordpress under the root folder. I made the wp-config.php and .htaccess changes and that resulted in a number of problems. As usual I can log into my site with
https://mysite.com/wordpress/wp-admin/edit.php
however when I click the menu items My Sites/ Network Admin/ Dashboard I get a 404 on the url
https://mysite.com/wp-admin/network/
however if i manually add wordpress to the url this works
https://mysite.com/wordpress/wp-admin/network
so it looks like either my .htaccess or wp-config.php is incorrect.My wp-config.php setup is
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘mysite.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);and .htaccess is
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
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 . index.php [L]
</IfModule>
# END WordPresChangeing the line
RewriteBase / to RewriteBase /wordpress does not seem to correct it.
Additionally the links to my origional wp blog are also broken.
I’m on vesion 3.5.1. Any help or guideance would be greatly appreciated.Thanks
GC
- The topic ‘WP Mulitsite not maping netwok correcty’ is closed to new replies.