# How would you handle thousands of URLs returning 200 but displaying "not found"?

> First determine whether they are true resources or generated error states.

For true missing pages:

- return 404/410;

- remove internal links;

- remove from sitemaps;

- redirect only when a relevant replacement exists.

Do not redirect every missing page to the homepage. A generic redirect can create misleading signals and poor user experience.

## Sources

- [Google Search Central — HTTP Network Errors](https://developers.google.com/search/docs/crawling-indexing/http-network-errors)

## Related questions

- [How do redirect chains affect SEO and crawling?](https://www.theseocentral.com/technical-seo-faq/how-do-redirect-chains-affect-seo-and-crawling.md)
- [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 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-would-you-handle-thousands-of-urls-returning-200-but-displaying-not-found
