/ Learning Hub / Site Crawler Fixes

How to Fix Every Site Crawler Finding

The Site Crawler simulates how Googlebot moves through your site and reports back the issues a search engine would hit β€” broken links, redirect chains, orphan pages, duplicate content, blocked URLs and sitemap mismatches. This index covers exactly how to fix every category of finding it raises, with concrete examples for static sites, WordPress, and crawler-friendly architectures.

New here?
Start with the Site Crawler Guide for what the crawler checks and why, the example crawl report to see real findings, or the beginner tutorial for the basics. Then jump to the fix category matching your finding below.

By finding type

Most crawler issues fall into one of these categories. Click through for the step-by-step fix:

πŸ”— Fix broken internal and external links (404s) LIVE
Find every 404 hit by the crawler, decide whether to redirect or remove, and the right way to handle bulk-broken links after a migration. Covers nofollow on outbound that you cannot fix, and Plesk/cPanel/htaccess redirect patterns.
β†ͺ️ Fix redirect chains and loops LIVE
Why http:// β†’ https://www. β†’ https:// destroys crawl budget. How to collapse multi-hop redirects to a single 301, detect redirect loops, and handle the case where your CDN and origin both want to redirect.
🏝️ Fix orphan pages and crawl depth LIVE
Pages that exist in the sitemap but have no internal links pointing at them. How to find them, when to delete vs link them in, and the "3 clicks from homepage" rule for important content.
πŸ“‘ Fix duplicate content and canonicalisation LIVE
Crawler flags two URLs with near-identical content? Use rel="canonical" on the duplicate pointing at the primary, or 301 if you do not need the duplicate URL. Covers query-string variants, pagination, and printer-friendly URLs.
πŸ€– Fix accidental robots.txt or meta-robots blocks LIVE
Pages you want indexed are blocked by Disallow: in robots.txt or noindex in meta. Common cause: staging configuration left in production. Audit, remove, and verify in Google Search Console.
πŸ—ΊοΈ Fix sitemap and crawl mismatches LIVE
URLs in your sitemap that return 404 or 301. URLs the crawler finds that are NOT in the sitemap. How to keep the sitemap honest, automate generation, and split large sitemaps the right way.
🐒 Fix slow template render that throttles the crawl LIVE
If pages take 5+ seconds to render, Googlebot quietly reduces its crawl rate. Identify slow templates from crawler timing data, fix the database query or rendering hot-spot, and verify crawl rate recovers.
πŸ“„ Fix thin content and low-value pages LIVE
Tag pages with 3 posts, empty category pages, archive pages with one item. When to noindex, when to merge, and when to delete entirely. Covers WordPress, Drupal and custom CMS patterns.

By platform

Where the fixes are actually configured depends on your CMS or hosting setup:

πŸ“° Fix crawler issues in WordPress LIVE
Yoast / Rank Math sitemap, redirection plugin patterns, the noindex trap in Reading Settings, fixing pagination canonicals, and the wp-admin crawl trap.
πŸ›’ Fix crawler issues in Shopify LIVE
Faceted navigation URLs that explode crawl space, duplicate product URLs across collections, the /products/ vs /collections/products/ issue, and what you cannot fix on Shopify.
🟧 Fix crawler issues in static-site generators LIVE
Hugo, Jekyll, Eleventy, Next.js, Astro: build-time sitemap generation, route-based canonicalisation, the broken-link-after-rebuild pattern, and CI checks that catch crawl issues before deploy.

What our Site Crawler checks

The crawler simulates a real Googlebot crawl on up to 10,000 URLs per scan. It checks response codes, redirect chains, internal link structure, canonical consistency, sitemap accuracy, robots.txt compliance, page rendering speed, and content depth. For the complete reference of every check, read the complete Site Crawler Guide, or see the example crawl report for what a clean crawl looks like.

πŸ•·οΈ Run a crawl first

Before fixing, run the crawler and see exactly what fails. Most sites have 3-5 main categories of finding β€” fixing those clears 80% of issues.

Run Site Crawler β†’
Related Guides: Site Crawler Guide  Β·  Example Crawl Report  Β·  Beginner Tutorial  Β·  Learning Hub
πŸ’¬ Got a problem?