A financial advisory firm had rebranded twice in six years, each time redirecting old URLs to new ones without ever going back to check what had already been redirected before. A visitor clicking an old bookmarked page was, without realizing it, being bounced through three separate redirect hops before landing on the actual current page — each hop adding a small delay, and each hop diluting a bit more of whatever ranking signal that original URL had built up over years of being linked to.
What a redirect chain actually is
A single 301 redirect — permanently sending a visitor and a crawler from an old URL to a new one — is a normal, healthy part of a site's lifecycle: a page gets renamed, a URL structure changes, an old service gets merged into a new one. A redirect chain forms when redirects stack on top of each other over time: URL A redirects to URL B, and later URL B itself gets redirected to URL C, but nobody goes back to update A to point directly at C. The visitor following the original URL A now has to pass through two hops instead of one, and every additional redirect in a chain adds both a small performance cost and additional signal loss.
Why chains accumulate without anyone intending it
- Rebranding or renaming a page more than once over a site's lifetime, without going back to update earlier redirects to point at the final destination
- Platform migrations that generate a new redirect layer stacked on top of redirects that already existed from a previous migration
- URL structure changes (adding or removing trailing slashes, changing a folder name) applied inconsistently across the site's redirect rules
- Marketing campaigns using short, memorable vanity URLs that redirect to a landing page, which itself later gets redirected elsewhere after the campaign ends
Why this is worth fixing, not just tolerating
Each hop in a redirect chain adds server round-trip time before a page finally loads, which matters both for user experience and because page load speed is a factor search engines weigh directly. Beyond speed, there's reasonable evidence that ranking signal degrades somewhat with each additional hop in a chain, meaning a page reached through three redirects doesn't carry quite the same inherited authority as one reached through a single, direct redirect. Neither effect is usually dramatic on its own, but they compound as a site accumulates more chains over multiple redesigns, and they're entirely avoidable with basic housekeeping.
- Export the site's complete list of active redirect rules from whatever system manages them (hosting configuration, CMS plugin, or .htaccess file)
- Trace each redirect rule to its actual final destination by following it through, rather than assuming the listed target is the last stop
- Wherever a chain of two or more hops is found, update the original rule to point directly at the true final destination, and remove the now-unnecessary intermediate rule
- Re-check any redirect rule after future migrations or renames specifically for whether it now creates a new chain with an existing rule, rather than only checking newly created redirects in isolation
- Periodically crawl the site's own internal links to confirm none of them are pointing at a URL that itself redirects — internal links should point directly at final destination URLs, not through a redirect hop, even a single one
A redirect chain isn't broken in the way a 404 is broken. It still works, technically. It just quietly costs a little more every time — every visit, every crawl, every accumulated hop.
A related trap: redirect loops
A more severe version of this problem is a redirect loop, where a chain eventually points back to a URL earlier in its own sequence, causing browsers and crawlers to give up entirely with an error rather than ever reaching a real page. Loops are usually the result of the same kind of accumulated, unaudited redirect rules as chains, just compounded further — one more reason a periodic full audit of redirect rules, rather than only checking new redirects as they're created, is worth scheduling on a recurring basis, particularly after any site migration or rebrand.
For sites that have gone through more than one redesign or rebrand, a redirect audit is one of the more overlooked technical SEO checks, and it's included in NetWebMedia's free audit.
Does your business show up when AI answers?
ChatGPT, Claude, Perplexity and Google's AI Overviews are already answering the questions your customers ask. The $49 AI Visibility Scan shows you where you're cited, where you're invisible, and the three changes that move you first — a written report in your inbox within 48 hours. If nothing in it is actionable, you don't pay.
Run the $49 AI Visibility Scan →Share this article
Comments
Leave a comment