What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

Limit redirect chains to fewer than 5 hops to avoid latency issues and ensure better crawling by search engines.
14:29
🎥 Source video

Extracted from a Google Search Central video

⏱ 55:31 💬 EN 📅 20/05/2016 ✂ 11 statements
Watch on YouTube (14:29) →
Other statements from this video 10
  1. 1:10 Dois-je craindre la cannibalisation entre deux sites identiques ?
  2. 2:14 Faut-il abandonner votre domaine si votre profil de liens est toxique ?
  3. 3:49 Le nettoyage de liens et le disavow peuvent-ils vraiment booster votre ranking ?
  4. 16:15 Faut-il privilégier une page unique complète ou plusieurs pages liées ?
  5. 17:28 Le SSL est-il vraiment indispensable pour un simple blog sans formulaire ?
  6. 28:13 Les liens sont-ils encore un facteur de classement fiable pour Google ?
  7. 30:57 Le contenu caché en CSS perd-il vraiment du poids en indexation ?
  8. 34:36 Faut-il paniquer à chaque fluctuation de vos positions dans les SERP ?
  9. 47:05 Pourquoi HTTPS est-il obligatoire pour vos contenus AMP embarqués ?
  10. 52:10 Les Rich Cards vont-elles exiger HTTPS pour s'afficher dans les résultats Google ?
📅
Official statement from (10 years ago)
TL;DR

John Mueller advises keeping redirect chains to fewer than 5 hops to maintain crawl performance. Beyond that, latency accumulates, and bots waste precious time, which directly impacts your crawl budget. In practical terms: clean up your redirect chains and always point to the final destination in a single hop whenever possible.

What you need to understand

What is a redirect chain and why is it problematic?

A redirect chain occurs when one URL redirects to a second, which then redirects to a third, and so on. Each hop adds an additional HTTP request, thus increasing latency. For a human, this remains transparent. For a bot, it is wasted time.

Google allocates a limited crawl budget to each site, especially those that are medium-sized or large. If Googlebot spends its time following cascading redirects, it crawls fewer useful pages. On a site with 10,000 URLs and hundreds of chains with 4-5 hops, the impact becomes measurable: orphan pages, delayed discovery of new content, and slower refresh rates for modified pages.

Why does Google set the limit at 5 hops?

Mueller does not provide a hard and fast rule, but 5 redirects serve as an empirical threshold beyond which issues become common. At 5 hops, you already accumulate 5 server round trips, which can mean 500 ms to 1 second of cumulative latency depending on your hosting quality.

Google follows redirects, but not indefinitely. Exceeding 5 hops risks the bot abandoning the sequence or flagging the page as low priority for future crawls. In practice, anything exceeding 3 hops is worth auditing: it is rarely justified and often indicates accumulated technical debt from successive migrations.

How do redirect chains impact PageRank?

Every 301 or 302 redirect passes along PageRank, but there is debate about potential loss. Officially, Google states that a 301 passes the full juice. Unofficially, multiplying hops mechanically dilutes the effectiveness of the signal: more latency, more chances of errors, less algorithmic trust.

A chain of 5 redirects does not block PageRank, but it unnecessarily complicates the internal link graph. If you have 100 backlinks pointing to an URL A that redirects in a chain to E, you waste crawl time and introduce vulnerabilities: a single broken redirect in the chain, and the entire flow collapses.

  • Limit each chain to just 1 hop whenever technically feasible: A → Z instead of A → B → C → Z.
  • Regularly audit with Screaming Frog or Botify to detect chains with 3+ hops.
  • Prioritize cleaning chains on high-traffic pages or those with many inbound backlinks.
  • Document your migrations to prevent successive layers of redirects during redesigns.
  • Avoid temporary redirects (302) in a chain: they do not pass PageRank the same way and create confusion.

SEO Expert opinion

Is this statement consistent with field observations?

Yes, absolutely. Audits show that sites with long redirect chains consistently face crawl issues: pages discovered late, reduced crawling frequency, and 404 errors masked by successive redirects. On e-commerce sites with a history of multiple migrations, chains of 6-8 hops are frequently found, sometimes even infinite loops detected later on.

What's interesting is that Mueller does not say "Google stops after 5 hops," but rather "limit to fewer than 5 to avoid issues." This is a sensible recommendation, not an absolute technical threshold. In practice, Googlebot likely follows beyond that, but with a decreasing probability and a negative impact on crawl quality.

What nuances should be considered regarding this rule?

Not all hops are equal. A chain of 3 redirects on a fast CDN with latency under 50 ms per hop poses fewer issues than a chain of 2 hops on a saturated server with 300 ms delay per request. Cumulative latency is the true indicator, not just the number of hops.

Another point: internal redirects (under your control) are easier to fix than external redirects imposed by third-party services. If you use a short link manager like Bitly or an affiliate program with multiple redirects, you do not control the entire chain. In such cases, prioritize direct links when possible, or negotiate with partners to reduce hops.

When does this rule not strictly apply?

On a small site (fewer than 500 pages) with daily full crawls, a handful of chains with 4-5 hops likely will have no measurable impact. The crawl budget is not the limiting factor. It is particularly on medium and large sites (10,000+ URLs) that every optimization counts.

Some technical architectures also impose constraints. For instance, a progressive migration by sections may temporarily create chains until the entire redesign is deployed. The key is that it must be temporary and documented, not a permanent technical debt. [To be verified]: Google has never released numeric data on PageRank loss per hop, making it impossible to quantify the impact on rankings precisely.

Warning: Redirect chains often mask other issues: disorganized architecture, hastily executed migrations, and lack of governance over URLs. Fixing the chains without addressing the root cause resolves nothing in the long term.

Practical impact and recommendations

How can you identify redirect chains on your site?

The first step: conduct a full crawl using Screaming Frog, Botify, OnCrawl, or DeepCrawl. Configure the crawler to follow redirects and export all URLs with 301/302 status. Then filter those pointing to another URL that is also redirecting. Most modern tools have a dedicated report for "redirect chains".

The second method: analyze the server logs to spot sequences where Googlebot follows multiple redirects in succession. A typical pattern: the bot visits A, then B, then C within a few milliseconds. This confirms that it is following the chain, but it wastes crawl budget unnecessarily.

What errors should be avoided during cleanup?

Never remove a redirect without verifying that it is no longer necessary. Some chains exist because the intermediate URL still receives external backlinks or direct traffic. In this case, keep the first redirect but short-circuit the others: A → Z instead of A → B → C → Z.

Another pitfall: modifying all redirects at once without testing can break functionalities (UTM parameters, conditional redirects by language or device). Proceed with progressive batches, test on a sample, monitor Search Console for a few days, then scale up.

What maintenance should be implemented to prevent recurrence?

Integrate an automated check into your CI/CD pipeline or monthly audits: alert when a chain exceeds 2 hops. Document each migration with a clean mapping file (old → new) to avoid stacking successive layers during future redesigns.

Train your technical and editorial teams: any creation of a redirect should point to the final destination, never to a URL already redirecting. This is a reflex to instill early in the specification phase, not a fix to be applied afterwards.

  • Crawl the site every month and export detected redirect chains
  • Prioritize chains on pages with SEO traffic > 100 visits/month
  • Short-circuit each chain by redirecting directly to the final destination
  • Check incoming backlinks before removing an intermediate redirect
  • Test changes on a sample and monitor Search Console for 48-72 hours
  • Set up an automatic alert when a new chain > 2 hops is created
Cleaning up redirect chains is a delicate technical operation that requires a fine understanding of the site's architecture, migration history, and link flows. If your site has undergone multiple successive redesigns or presents a complex structure, working with a specialized SEO agency can help avoid costly mistakes and ensure a methodical, prioritized cleaning without risk to your visibility.

❓ Frequently Asked Questions

Google suit-il les redirections au-delà de 5 sauts ?
Oui, Googlebot peut suivre au-delà de 5 sauts, mais la recommandation de Mueller vise à éviter les problèmes de latence et de budget crawl. En pratique, plus la chaîne est longue, plus le risque d'abandon ou de priorité basse augmente.
Une redirection 302 en chaîne a-t-elle le même impact qu'une 301 ?
Non, les 302 sont interprétées comme temporaires et ne transmettent pas le PageRank de la même manière. Enchaîner des 302 est particulièrement problématique car Google peut choisir de ne pas suivre la chaîne complètement.
Faut-il corriger en priorité les chaînes longues ou celles avec du trafic ?
Priorisez les chaînes sur les pages à fort trafic SEO ou avec beaucoup de backlinks. Une chaîne à 6 sauts sur une page orpheline sans lien entrant aura un impact négligeable comparé à une chaîne à 3 sauts sur votre page produit la plus visitée.
Les redirections JavaScript comptent-elles dans la chaîne ?
Oui, si Googlebot doit exécuter du JavaScript pour découvrir la redirection, cela ajoute de la latence et compte comme un saut. Les redirections côté serveur (301/302) restent toujours préférables pour le SEO.
Comment gérer les chaînes créées par des services tiers (affiliations, URL shorteners) ?
Vous ne contrôlez pas ces redirections externes. Solution : utilisez des liens directs quand c'est possible, ou négociez avec les partenaires pour qu'ils réduisent les sauts. Documentez ces chaînes externes pour ne pas les compter dans vos audits internes.
🏷 Related Topics
Crawl & Indexing Redirects

🎥 From the same video 10

Other SEO insights extracted from this same Google Search Central video · duration 55 min · published on 20/05/2016

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.