ERR_TOO_MANY_REDIRECTS: The page is stuck in a redirect loop

Two rules are bouncing the request back and forth — most often an HTTPS redirect at the application level fighting a proxy that is forwarding as plain HTTP, so each side thinks the other needs to upgrade.

Short answer

Two rules are bouncing the request back and forth — most often an HTTPS redirect at the application level fighting a proxy that is forwarding as plain HTTP, so each side thinks the other needs to upgrade.

What ERR_TOO_MANY_REDIRECTS means

Browsers follow a limited number of redirects (usually 20) before giving up. A loop means the chain never terminates: A sends you to B, and B sends you back to A.

Causes and fixes, most likely first

  1. The CDN forwards to the origin over HTTP while the origin redirects all HTTP to HTTPS — an infinite loop. Switch the CDN's SSL mode to Full so the origin leg is encrypted, or make the origin trust the forwarded-proto header instead of the raw scheme.
  2. www and non-www rules each redirect to the other. Pick one canonical hostname and make sure only one rule redirects, in one direction.
  3. A CMS's configured site URL disagrees with the hostname being requested. Set the CMS site/home URL to the exact canonical hostname and scheme in use.
  4. A stale cookie is driving a login redirect loop. Clear cookies for the domain and retry. If a private window works and a normal one does not, this is the cause.

ERR_TOO_MANY_REDIRECTS on specific platforms

How to stop it happening again

Check your own domain

The uptime probe returns the full redirect chain, so you can see the exact two URLs bouncing off each other instead of inferring it from behaviour.

Frequently asked questions

How do I fix ERR_TOO_MANY_REDIRECTS?

Trace the redirect chain from outside the browser. Nine times out of ten it is an HTTPS redirect at the origin fighting a CDN that forwards over HTTP — fix by using an encrypted origin connection or honouring the forwarded-proto header.

Why does clearing cookies sometimes fix it?

Because a stale session cookie can trigger a login redirect that immediately redirects back. That loop is per-visitor, not site-wide.