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 — SSL certificate 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.
SSL/TLS is the encryption protocol that protects data between the browser and server. Our tool analyzes the certificate, chain of trust, TLS version, and knownvulnerabilities.
Issuer, validity period, signature algorithm, covered domains (SAN), and validation type (DV/OV/EV).
Full chain verification: from leaf certificate through intermediates to root CA.
Protocol version (TLS 1.2/1.3), cipher suites, Perfect Forward Secrecy (PFS) support.
Set up a monitor — get Telegram and email alerts 30/14/7 days before expiration.
SSL certificate monitoring
TLS config audit
HTTPS as ranking factor
customer trust
www and subdomains.Strict-Transport-Security header forces browsers to always use HTTPS.SSL certificate monitoring, check history and alerts 30 days before expiry.
Sign up freeChrome: 20. Firefox: 20. Then block. Curl default: 50.
<a href="/en/redirects">Enterno Redirects Checker</a> shows the chain + codes + timing. Or <code>curl -IL -w "redirects: %{num_redirects}\n" https://example.com</code>.
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.