A Practical Guide to Testing Website Redirect Chains
One redirect is normal and cheap. Three in a row, each added at a different point for a different reason nobody cleaned up afterward, quietly costs you crawl budget, page speed, and a measurable chunk of link equity.
How Chains Actually Form
A redirect chain rarely gets built on purpose - it accumulates. A URL moves from HTTP to HTTPS (redirect one), then the page itself gets restructured under a new path (redirect two), then a domain migration adds a third hop on top of both. Each individual redirect was a reasonable decision at the time; the chain is what's left when nobody goes back and points the original URL directly at the final destination.
What It Actually Costs You
- Page speed. Each hop is a full additional round trip before the browser even starts loading the real page - three redirects can easily add several hundred milliseconds before any content begins rendering.
- Crawl budget. Search engine crawlers have a finite budget per site; every hop in a chain consumes part of it on redirects instead of on fetching new or updated content.
- Link equity loss.While modern search engines generally pass most ranking value through a single redirect, that passage isn't perfectly lossless, and it's the least reliable across multiple chained hops - flattening the chain removes the uncertainty entirely.
- Chains that eventually loop.The worst outcome: a chain that's edited over time until one of the later redirects accidentally points back to an earlier URL in the same chain, producing an infinite loop that fails outright in every browser.
How to Find Them
Follow a URL's redirect chain manually with a tool that shows every hop's status code (not just the final destination) - a single 301 followed immediately by the real page is fine; three or more hops before landing is worth fixing.
How to Fix It
- Update the original redirect rule to point directly at the final, current destination - skip every intermediate hop entirely.
- Update internal links across the site to point at the final URL directly, rather than relying on a redirect to catch stale internal links.
- Re-check after any domain migration or URL restructuring - these are the two events most likely to add a new hop onto an already-existing chain.
See your full audit score right now
Run a free instant audit and get an AI-prioritized fix list for performance, SEO, and accessibility.
Run a free auditRelated reading