Skip to content

Redirect Chain Checker: Why 3-Hop Redirects Are Quietly Hurting Your Site

28 May 2026 · 5 min read

A single redirect is fine. It's the polite way of saying "this moved, here's where it went." A chain of three redirects is the equivalent of giving someone directions that include two more sets of directions. Technically they'll get there. But why are you doing this to them?

Redirect chains - sequences of three or more hops before reaching the final destination - accumulate over years of site migrations, URL changes, and CMS updates. Each one was probably a reasonable decision at the time. Collectively, they're dead weight on every page load.

What a redirect chain looks like

A typical chain builds up like this: you rename a blog post URL, adding a redirect from the old slug. Six months later you migrate to a new domain, adding a redirect from the old domain. A year after that you restructure your blog directory, adding another redirect. The original URL now takes three hops to reach the content.

Redirect chain

301https://example.com/blog/old-post-name->
301https://example.com/articles/old-post-name->
301https://www.example.com/articles/old-post-name->
200https://www.example.com/articles/current-post-name

Each hop above is a separate HTTP request. The browser has to wait for each one to complete before making the next. On a fast connection this might add 50-150ms per hop. On a mobile connection or a slow server, it's worse.

Why chains hurt performance

Each redirect requires a round-trip to the server: the browser requests the URL, the server responds with a redirect, the browser follows it, repeat. A chain of three adds the latency of two extra round-trips to every page load from that URL. For users, this is invisible but measurable - pages feel marginally slower in ways that correlate with higher bounce rates.

For crawlers, redirect chains consume crawl budget. A bot following a 4-hop chain to reach your content has used 4x the resources it would have for a direct link. On large sites with many chained redirects, this is a meaningful drain on how much of your site gets crawled.

Why chains hurt SEO

Link equity dilution

When external sites link to your content, they pass ranking signals along with the link. A redirect passes most of that signal through - but not all of it, and with each additional hop the loss compounds. A 4-hop chain passes noticeably less equity than a direct URL. If your most-linked content is behind chains, you're leaving ranking potential on the table.

Indexing inconsistency

Google may index any URL in a chain as the canonical version, not necessarily the final destination. If you want Google to index a specific URL as the canonical, ensure internal links and sitemaps point directly to it - not through a chain that lands there eventually.

Redirect chains detected
URLIssueStatusFound on
/news/2021/product-launchWarningRedirect chain (3 hops)-/blog/
http://old-domain.com/aboutWarningRedirect chain (4 hops)-/partners
/products/old-category/itemWarningRedirect chain (3 hops)-/products/

301 vs 302 chains

The type of redirect matters in a chain. A 301 (permanent) passes more link equity than a 302 (temporary). A chain that mixes 301s and 302s passes less than a pure 301 chain. A chain that ends in a 302 is telling Google "this is temporary" about what is probably a permanent destination - which affects how the URL is cached and indexed.

The fix is simple in principle, hard in practice. Collapse the chain: update the first redirect to point directly to the final destination. The middle hops become unnecessary and can be removed. The hard part is finding all the chains - which is where a crawler helps.

Finding and collapsing chains

To fix a redirect chain, you need to know it exists first. A crawler that follows redirects and reports chains of 3+ hops gives you a prioritized list. Work from the most-linked URLs first - those are where the equity loss is highest. Update the redirect rules in your server config or .htaccess to point directly to the final URL, bypassing intermediate hops entirely.

Try it now - it's free, no account needed

Up to 1,000 pages. Results in minutes.