# How do redirect chains affect SEO and crawling?

> A chain such as:

`A → B → C → D
`
creates unnecessary requests and increases complexity.

A cleaner implementation is:

`A → D
`
Google's crawl-budget documentation recommends avoiding long redirect chains.

During a migration, crawl the old URL inventory and verify that redirects resolve directly to final destinations.

## Sources

- [Google Search Central — Crawl Budget](https://developers.google.com/crawling/docs/crawl-budget)

## Related questions

- [How do you handle conflicting canonical signals?](https://www.theseocentral.com/technical-seo-faq/how-do-you-handle-conflicting-canonical-signals.md)
- [How do you troubleshoot incorrect canonicalization at scale?](https://www.theseocentral.com/technical-seo-faq/how-do-you-troubleshoot-incorrect-canonicalization-at-scale.md)
- [How would you handle thousands of URLs returning 200 but displaying "not found"?](https://www.theseocentral.com/technical-seo-faq/how-would-you-handle-thousands-of-urls-returning-200-but-displaying-not-found.md)
- [How would you identify redirect loops?](https://www.theseocentral.com/technical-seo-faq/how-would-you-identify-redirect-loops.md)
- [What happens when canonical tags point to 404 pages?](https://www.theseocentral.com/technical-seo-faq/what-happens-when-canonical-tags-point-to-404-pages.md)
- [What happens when canonical tags point to redirected URLs?](https://www.theseocentral.com/technical-seo-faq/what-happens-when-canonical-tags-point-to-redirected-urls.md)
- [What is the SEO impact of soft 404s?](https://www.theseocentral.com/technical-seo-faq/what-is-the-seo-impact-of-soft-404s.md)
- [What would you check after a large-scale URL migration?](https://www.theseocentral.com/technical-seo-faq/what-would-you-check-after-a-large-scale-url-migration.md)
- [When should you use a 301 versus a 302?](https://www.theseocentral.com/technical-seo-faq/when-should-you-use-a-301-versus-a-302.md)

---

Answered by Abhinav Krishna (https://www.theseocentral.com/author/abhinav-krishna)
Source: https://www.theseocentral.com/technical-seo-faq/how-do-redirect-chains-affect-seo-and-crawling
