Redirect Chains and How They Hurt SEO

Every redirect in a chain loses a little link equity and adds latency. Here is how to find and fix them.

What is a redirect chain?

A redirect chain is when a URL redirects to another URL, which redirects to another, before reaching the final destination. Each hop adds latency and may lose link equity.

Why they matter

Googlebot follows up to 10 redirects but stops after that. More importantly, each redirect in the chain dilutes the PageRank signal by a small amount. A 3-hop chain from a high-authority backlink delivers less equity than a direct link.

Common causes

  • HTTP to HTTPS migration left old redirects pointing to the HTTP version, which then redirects to HTTPS
  • Domain changes stacked on top of old redirects
  • CMS slug changes that create a redirect from the old slug to the new one, then a later rename creates another
  • Trailing slash inconsistency — /page redirects to /page/ which redirects to the canonical

How to fix

  1. Crawl your site and export all redirect chains
  2. For each chain, identify the final destination
  3. Update each source to point directly to the final destination
  4. Update internal links to use the final URL (avoid the redirect entirely)

Related: Internal Linking: The SEO Signal You Control explains how to structure the links that carry equity.

How to detect redirect chains

The manual approach: enter a URL in your browser's DevTools network tab and watch the redirect hops. But this does not scale beyond a handful of URLs.

The systematic approach: crawl your site and flag every URL that takes more than one hop to reach its destination. Export the list, sort by the number of hops, and fix from the longest chains down.

Pay special attention to:

  • Old blog posts with backlinks — these carry the most external equity and lose the most from each hop
  • Navigation links — a redirect in your main nav fires on every page load for every visitor
  • Sitemap URLs — every URL in your sitemap should resolve in zero redirects

A clean redirect graph means every link — internal and external — delivers its full equity directly to the page that needs it.