Godaddy + Multisite + Cloudflare + Redirect loops
-
Hello.
Working on a client website which is hosted on GoDaddy. Due to their ridiculous costs for SSL, SSL is handled by Cloudflare. Everything was working fine, but I’ve converted the site to multisite and I’m starting to see redirect loops.
You can get to the admin panel fine, and browse the site, but it’s only when you go to add a plugin that it loops. You get the following:
Request URL: https://henparty.yoga/wp-admin/network/plugin-install.php
Status Code: 302
location: https://henparty.yoga/wp-admin/plugin-install.php?tab=gd-recommendedThe following:
Request URL: https://henparty.yoga/wp-admin/plugin-install.php?tab=gd-recommended
Status Code: 302
https://henparty.yoga/wp-admin/network/plugin-install.phpand repeats.
Trying out the cloudflare prevent redirect plugins isn’t helping. The .htaccess file is correct:
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]
We have the same problems with the add themes page. I’ve not found any other pages which loop.
Any clues where to go to debug?
- The topic ‘Godaddy + Multisite + Cloudflare + Redirect loops’ is closed to new replies.