NNESTECHUB
← BACK TO JOURNAL

How to Fix ERR_TOO_MANY_REDIRECTS in Chrome and WordPress

Break browser and server redirect loops by clearing site data, correcting SSL mode, aligning WordPress URLs, and resetting rewrite rules.

How to Fix ERR_TOO_MANY_REDIRECTS in Chrome and WordPress

ERR_TOO_MANY_REDIRECTS means the browser is trapped in a loop: one URL redirects to another, which immediately redirects back. The fix depends on whether the loop exists in your browser or on the website’s server.


Primary Causes

  • Stale authentication cookies or cache.
  • Conflicting HTTP and HTTPS redirects.
  • Mismatched WordPress home and site URLs.
  • Overlapping SEO, cache, or redirect-plugin rules.

Client Fix 1: Clear Data for Only That Website

  1. Open Chrome settings and search for site data.
  2. Find the affected domain.
  3. Delete its cookies and local storage, then reload.

Clearing site data signs you out of that website but avoids deleting the rest of your browsing data.


Client Fix 2: Flush the Local DNS Cache

ipconfig /flushdns

Restart the browser and try the destination again.


Server Fix 1: Correct Cloudflare SSL Mode

A common loop occurs when Cloudflare uses Flexible encryption while the origin server forces HTTPS. In Cloudflare, open SSL/TLS > Overview and use Full (Strict) when the origin has a valid certificate.


Server Fix 2: Align WordPress URLs

Both values must use the same protocol, hostname, and www choice.

define('WP_HOME', 'https://yourdomain.com');
define('WP_SITEURL', 'https://yourdomain.com');

Server Fix 3: Reset .htaccess

Back up the existing file before changing it, then use the standard WordPress rules:

# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress

Redirect Diagnostic Matrix

SetupLikely triggerSolution
Cloudflare proxyFlexible SSLUse Full (Strict)
HTTPS migrationMixed WordPress URLsAlign HOME and SITEURL
SEO pluginsOverlapping rulesDisable and test plugins
One browser onlyStale cookieClear domain data
JOIN THE CONVERSATION

What do you think?

0 COMMENTS

Be the first person to share a thought.

KEEP READINGExplore all stories →