Skip to main content
短.be

Redirect Chain

A sequence of multiple redirects between the initial URL and the final destination, where each redirect points to another redirect.

Sep 6, 2026 · About 1 min read

Redirect

A redirect chain occurs when a URL redirects to another URL, which in turn redirects to yet another URL, creating a sequence of multiple hops before reaching the final destination. For example, URL A redirects to URL B, which redirects to URL C, which finally serves the content. Each additional hop means one more network round trip, and one more hop the crawler has to follow before it reaches the final page.

Redirect chains commonly arise during site migrations, URL restructuring, or when multiple URL shortening services are layered. Over time, as URLs are updated without cleaning up old redirects, chains can grow to three, four, or more hops. Each additional hop adds network round-trip time and increases the risk of the chain breaking if any intermediate URL becomes unavailable.

Keeping chains short, ideally a single hop from source to destination, avoids these extra round trips. Google Search Central documentation states that Google's crawlers follow up to 10 redirect hops by default, and that the limit may differ for the crawlers of specific products (as of August 2026). Every additional hop is one more request the crawler makes before it reaches the content that is finally served.

To identify and fix redirect chains, use tools like Screaming Frog, Ahrefs, or browser developer tools to trace the full redirect path. The fix is straightforward: update each redirect in the chain to point directly to the final destination, eliminating intermediate hops.

Share on XHatena

Was this article helpful?

Related Terms

Related Articles

FAQ

How many redirect hops are acceptable in a chain?
Google Search Central documentation states that Google's crawlers follow up to 10 redirect hops by default (as of August 2026). Even so, the ideal is to reach the final URL in a single redirect, because every extra hop adds a network round trip before the page appears.
How can you detect redirect chains?
Tools like Google Search Console, Screaming Frog, and the curl command can detect them. Using curl -L -v lets you inspect each step in the redirect chain.

Put the terms to work

Shorten a URL for Free