What is Redirect Chain Rate?
Redirect Chain Rate is the percentage of a site's redirects that pass through two or more hops before reaching their final destination, instead of redirecting directly in a single step. Long redirect chains slow down page loading and waste crawl budget, since search engines and browsers have to follow every hop in the chain.
TL;DR
Redirect Chain Rate is the share of a site's redirects that take multiple hops instead of going straight to the final URL. Every extra hop adds load time and wastes crawl budget.
Formula
Redirect Chain Rate = (Redirects with 2+ Hops / Total Redirects) × 100
Why It Matters
Redirect chains quietly tax both user experience and crawl efficiency, since every hop adds latency for real visitors and consumes crawl budget that search engines could otherwise spend indexing new or updated content. Left unmonitored, chains tend to accumulate naturally as a site goes through multiple migrations or URL restructures over the years, each one adding another link without anyone going back to clean up the earlier ones. A rising redirect chain rate is a leading indicator that technical debt is building even though every individual redirect still technically works. It matters most on high-traffic or frequently crawled pages, where the cumulative latency and wasted crawl budget have the biggest impact. Fixing it is usually simple, pointing each redirect straight at the current final URL, which makes it one of the higher-value, lower-effort items in a technical SEO cleanup.
Example
A site audit finds 400 total redirects, and 60 of them pass through at least one intermediate redirect before landing on the final URL. Redirect chain rate is 60 divided by 400, times 100, which equals 15%. A common cause is a page getting redirected during one site migration, then redirected again during a later one, leaving a chain that still technically works but adds unnecessary latency and crawl overhead; the fix is updating each redirect to point straight to the current final URL.
Frequently Asked Questions