multi-site not creating new sites, gives redirect loop.
-
Forgive me as I have seen this topic appear in my search efforts to resolve the issue on my own. I’ve now come forth to seek your advice.
I’ve installed WP & built a site; currently on WP v.3.8.1. I’ve enabled multisite sub-domains & setup the wildcard with my hosting service provider.
1) When I create a new site, the network dashboard shows it’s existence, but I am unable to view the site nor the specific site’s dashboard. Rather, I see “this page has a redirect loop.”
2) if I remove the www. from my https://www.example.com I get thrown to the /wp-signup.php?new=example.com” page saying “Registration has been disabled.”My goal:
1) Have a multisite network so that I can route my clients to their respective site; Sub-domain if it must, though I’ve have on other wp-mu installed paths.
2) Should anyone type example.com instead of https://www.example.com have it redirect to the https://www.example.com.Here’s my wp-config.php
/* Multisite */ define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'www.example.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); define( 'NOBLOGREDIRECT', 'https://example.com' );
Here's my .htaccess: # BEGIN WordPress 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).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPress
I hope I’ve been thorough enough for someone more knowledgable than myself to resolve this problem. I’m happy to share more info should you need anything.
Thank you in advance,
d
- The topic ‘multi-site not creating new sites, gives redirect loop.’ is closed to new replies.