← Retour au changelog
Robots.txt analyzer
Fetch and parse a domain's robots.txt, simulate a crawl decision for any User-Agent + path, list every declared sitemap.
ⓘ Cette entrée est rédigée en anglais par les développeurs.
/tools/robots does the three things you usually want when debugging crawl behaviour:
- Fetch
https://<domain>/robots.txtand show the raw body alongside a parsed view of everyUser-agentgroup (Allow / Disallow / Crawl-delay). - Test a specific path against a specific User-Agent: tell us the UA (defaults to
Googlebot) and the path (defaults to/), and we reportAllowedorBlockedplus whichAllow:/Disallow:rule decided it. The matcher implements Google’s wildcard semantics (*matches any sequence,$anchors end-of-path) and the longest-match wins. - Discover declared sitemaps: any
Sitemap:line in the file is collected and rendered as a clickable list — feeds straight into the sitemap validator.
Useful for confirming that a freshly-deployed Disallow: /admin actually blocks /admin/foo but not /administrator, and that the new Sitemap: URL is actually pointing at the right host.