Redirect chains: why they hurt SEO and how to flatten them
Every extra hop in a redirect chain slows the page, wastes crawl budget, and leaks a little ranking signal. Aim for one redirect, never more than two. Flatten chains by updating the final destination in your original redirect rule.
Every extra hop in a redirect chain slows the page, wastes crawl budget, and leaks a little ranking signal. Aim for one redirect, never more than two. Flatten chains by updating the final destination in your original redirect rule. A redirect chain is when URL A redirects to B, which redirects to C, which redirects to D. Each hop is an HTTP round trip. Modern Google follows up to ~10 hops but treats long chains as a quality signal against the destination.
Last updated·
What it is
A redirect chain is when URL A redirects to B, which redirects to C, which redirects to D. Each hop is an HTTP round trip. Modern Google follows up to ~10 hops but treats long chains as a quality signal against the destination.
Why it matters
Three measurable costs: (1) page speed — each hop adds round-trip latency, hurting Core Web Vitals; (2) crawl budget — Google spends one crawl request per hop instead of discovering new content; (3) link equity — even though Google says PageRank passes through 301 chains, internal tests by SEO teams consistently show some signal loss past 2 hops.
How to fix it
- Crawl the site and identify chains. Most SEO crawlers (VectraSEO, Screaming Frog) flag redirect chains explicitly. You want the full chain documented, not just the start and end.
- Update the original redirect to point at the final destination. If A → B → C → D, change the A → B rule to A → D. Repeat for any link or sitemap entry still pointing at B or C.
- Audit your own internal links. A common cause: an old link in a footer or sidebar template still points to the pre-redirect URL. Update internal links to the final URL so no redirect is hit at all.
- Re-crawl and verify. Confirm the chain is now one hop maximum. Track Search Console crawl stats to see crawl budget recovered over the next 4 weeks.
Authoritative sources
- Redirects and Google Search — Google Search Central
- RFC 7231 — HTTP/1.1 redirection 3xx — IETF
- Google Search Central documentation — Google
- Schema.org vocabulary — schema.org
- SEO Starter Guide — Google Search Central
- MDN — HTML meta and link elements — Mozilla MDN