New multi site (subdirectory), sub site admin > "redirected you too many times."
-
Hi,
I have a standalone WordPress site @ staging.example.com.au
I’ve switched to multi site (subdirectory).
When I open the new subdirectory site’s admin, I receive:
The staging.example.com.au page isn’t working
staging.example.com.au redirected you too many times.
Try:
Reloading the page
Clearing your cookies
ERR_TOO_MANY_REDIRECTSHere is my wp-config.php:
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘staging.example.com.au’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);Here is 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 WordPressHelp appreciated.
- The topic ‘New multi site (subdirectory), sub site admin > "redirected you too many times."’ is closed to new replies.