Multisite WP Admin redirect loop – subsites only
-
Hi all
Experiencing a problem with a redirect loop when accessing WP Admin.
But it’s only affecting subsites, not the root site or network admin.
Plus, the redirect only affects the /wp-admin/ folder. Going directly to /wp-admin/index.php (and all other files in the folder) work fine.
The network is setup with subsites using their own domains, via domain name mapping.
HTACCESS has the following:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 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] </IfModule> # END WordPress
I’ve checked the permissions on the wp-admin folder and they appear to be set correctly. There are no additional htaccess files in the wp-admin folder either.
Any ideas?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Multisite WP Admin redirect loop – subsites only’ is closed to new replies.