ShipworkSite inspection
Robots simulator

Crawlability

PaginationAre paginated pages set up right?Internal searchIs site search eating crawl budget?URL parametersAre parameters creating duplicates?Log analyserWhat does Googlebot actually crawl?Robots builderNeed a robots.txt file?Soft 404sAre pages “not found” but returning 200?JavaScriptCan crawlers see it without running JS?FreshnessIs my site quietly going stale?Robots.txtDoes robots.txt say what I think?

Indexing

Sitemap lastmodAre my sitemap dates valid?SitemapIs my sitemap actually fetchable?IndexingIs Google allowed to index my pages?CanonicalsIs Google indexing the wrong URL?Index signalsDo sitemap and index signals agree?Redirect builderNeed the redirect rules?RedirectsAre my URLs answering directly, over HTTPS?

On-page

Keyword ideasWhat are people searching for?SERP previewHow does my page look in Google?Content qualityAre your pages too thin or too alike?Image weightAre images slowing the page?CannibalizationAre pages competing with each other?On-page checkDoes the page use its target phrase?ImagesAre my images accessible and loading?DuplicatesDo my pages compete for one query?

Links

Orphan pagesWhich pages can no link reach?Link graphHow deep do your pages sit?Anchor textDo links say what they point at?Outbound linksAre external links still alive?Broken linksAre internal links sending visitors nowhere?

Structured data

Rich resultsIs my markup eligible for a rich result?Structured dataIs my product schema valid?Schema coverageDo my key pages carry structured data?Social previewHow does my page look when shared?Schema vs pageDoes markup match the page price?Schema builderNeed valid JSON-LD?

International

Hreflang sitemapDo page and sitemap hreflang agree?HreflangDo my language versions link back?Hreflang builderNeed the hreflang tags?Redirect planMy site has dead links — what redirects do I write?Sitemap diffIs anything missing from my sitemap?Robots simulatorWhat does my robots.txt actually block?Can Googlebot?Can Googlebot fetch this URL?
Every error, explainedGuides →
Pricing Learn Guides
Sign in

Signing in is optional: it keeps your account, watches and connections on any device. Every free check, the audit and the score work with no account at all.

Sign in with GoogleOpens your account, or creates a free one PricingPlans and credit packs for the paid jobs

What does your robots.txt actually block?

Paste the file and read it the way a crawler does: per user-agent group, with the real longest-match precedence. Then test any URL against any agent and see the exact line responsible.

Runs in your browser. Nothing is sent anywhere.

How this works

It parses your file into user-agent groups and resolves each URL the way a crawler does: the most specific matching agent wins, and inside that group the longest matching path wins, with Allow beating Disallow on a tie. It then flags the mistakes that quietly remove a site from search: a bare Disallow: /, blocking the CSS and JavaScript Google needs to render, blocking the sitemap, and a missing or stale Sitemap: line. Nothing here leaves the page. Once your file is right, run the single-URL test against the live site.

Questions

What does robots.txt actually control?
Which paths crawlers may request. It is a request, not a lock: well-behaved crawlers obey it, malicious ones ignore it. It manages crawling, it does not secure anything.
Which group applies to a crawler?
The most specific user-agent that matches wins. A group naming GPTBot beats a group for *, and a prefix such as Googlebot also matches Googlebot-News. If no named group matches, the * group applies.
Allow and Disallow both match a URL. Which wins?
The longer, more specific path wins. When two rules match and have the same length, Allow beats Disallow. That tie-break is why a single Allow can rescue one path out of a broad Disallow.
Does this send my robots.txt anywhere?
No. It is parsed and matched entirely in your browser. Nothing is uploaded, logged or stored.