ERR_TOO_MANY_REDIRECTS (Chrome) / "Too many redirects" (Firefox) — browser stopped following redirects after 10+ hops. Causes: server block A redirects to HTTPS, server block B (HTTPS) redirects back to HTTP due to wrong detection. Or WordPress + Cloudflare Flexible SSL. Fix: find loop origin via curl -ILk.
This error blocks HTTPS access. Below: causes, fixes, working config, FAQ.
Free online tool — redirect checker: instant results, no signup.
curl -ILk https://example.com — see chain and loop pointThe ERR_TOO_MANY_REDIRECTS error occurs when a website enters a redirect loop, causing the browser to fail in loading the page. To resolve this, check your server configuration for conflicting redirect rules, clear browser cache, and ensure that your website's URL settings are correctly configured in CMS or server settings. For instance, verify the .htaccess file or Nginx configuration for any misconfigured directives.
Redirect loops happen when a URL redirects to another URL that eventually redirects back to the original URL, creating an infinite loop. This can stem from various sources, including:
To diagnose a redirect loop, you can use tools like Redirect Checker or browser developer tools to trace the redirect path. Analyzing the HTTP response codes can help pinpoint the issue.
To fix the ERR_TOO_MANY_REDIRECTS error, follow these practical steps:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ https://www.example.com/$1 [L,R=301]server {
listen 80;
server_name example.com;
return 301 https://www.example.com$request_uri;
}
server {
listen 80;
server_name www.example.com;
return 301 http://example.com$request_uri;
}After implementing the changes, be sure to restart your web server and clear your browser cache again. This should resolve the ERR_TOO_MANY_REDIRECTS error. If issues persist, consider consulting server logs for more detailed error messages.
Incorrect or long redirect chains slow down the site, lose PageRank and confuse search crawlers. The tool visualizes the full redirect chain with response codes and timing for each hop.
Shows each redirect step: URL → code → URL → code, through to the final destination.
Measures latency at each redirect step for precise identification of performance bottlenecks.
Distinguishes 301, 302, 303, 307, 308 — each has different behavior for SEO and browsers.
Automatically detects circular redirects and warns before the browser throws an error.
redirect chain audit
301/302 debugging
HTTPS redirect check
UTM link tracking
Redirect check history and API for automated chain auditing.
Sign up freeChrome: 20. Firefox: 20. Then block. Curl default: 50.
Enterno Redirects Checker shows the chain + codes + timing. Or curl -IL -w "redirects: %{num_redirects}\n" https://example.com.
Flexible: Edge↔User = HTTPS, Origin↔Edge = HTTP. Flexible + HTTPS redirect in PHP = loop. Full: both HTTPS — no loop.
If yes, the domain is HTTPS-only forever. HTTP redirect won't help. Fix only on the HTTPS side with the right target.
Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.