Robots.txt Checker
See what a public website’s robots.txt file says.
Robots.txt checker
Robots.txt
Enter a public website and check its robots.txt.
- Website
- robots.txt URL
- HTTP status
- User-agent groups
- Sitemaps
- Final URL
- Crawl rules
Crawl rules
Sitemaps
How it works
IngoHub requests the site’s robots.txt file, reads a bounded text response, and reports the crawl rules and sitemap declarations it contains.
- WEBSITE
- https://example.com
- ROBOTS.TXT
- Found
- USER-AGENT
- *
- DISALLOW
- /admin/
- SITEMAP
- https://example.com/sitemap.xml
Questions
What is robots.txt?
robots.txt is a public text file a website can publish to tell crawlers which paths they may request. This checker summarizes that file. It does not crawl the site.
Where is robots.txt located?
It lives at the site origin, as /robots.txt. A page such as https://example.com/blog/page is checked at https://example.com/robots.txt, not at a path under /blog.
What does User-agent mean?
User-agent names the crawler a group of rules applies to, such as * for all crawlers or Googlebot for Google’s crawler.
What does Disallow mean?
Disallow lists paths the named crawler is asked not to request. An empty Disallow value is a common way to allow all paths for that group.
What does Allow mean?
Allow lists paths that remain permitted inside a group that also has Disallow rules. This checker reports the declared values. It does not apply crawler precedence.
What is Crawl-delay?
Crawl-delay is an optional directive some crawlers treat as a pause between requests, shown here in seconds when the value is numeric.
What does Sitemap mean in robots.txt?
A Sitemap line declares a sitemap URL. This checker lists those declarations. It does not fetch or validate the sitemap files.
Does robots.txt block a page from appearing in search?
No. robots.txt can ask crawlers not to request a path. It does not by itself hide a page from search results.
What happens if a site has no robots.txt?
If the server returns 404 or 410 for /robots.txt, this checker reports Not found. That is a normal website outcome, not a tool failure.
Does this checker test whether a specific URL is allowed?
No. This version summarizes the robots.txt file. A path-specific robots tester is a separate capability.