AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
Generate robots.txt files with custom rules for search engine crawlers.
robots.txt is a text file placed at the root of your website that instructs web crawlers (like Googlebot) which pages they can and cannot crawl. It follows the Robots Exclusion Standard.
This tool features:
| Directive | Purpose | Example |
|---|---|---|
User-agent |
Targets a specific crawler or * for all | User-agent: Googlebot |
Disallow |
Prevents crawling of specified paths | Disallow: /admin/ |
Allow |
Overrides a Disallow for a specific path | Allow: /public/ |
Crawl-delay |
Sets delay in seconds between requests | Crawl-delay: 10 |
Sitemap |
Points crawlers to your XML sitemap | Sitemap: https://site.com/sitemap.xml |
The robots.txt file must be placed in the root directory of your website, accessible at https://yoursite.com/robots.txt. It must be a plain text file named exactly robots.txt.
No. robots.txt only prevents crawling, not indexing. If a page is linked from elsewhere, it may still appear in search results without a description. Use noindex meta tags to prevent indexing.
Yes. Disallow: / tells crawlers not to crawl any page on the site. However, they may still index pages found from external links.
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026