Create a custom robots.txt file for your website in seconds, decide exactly which AI crawlers may use your content, and test any URL against any site's live rules. Set crawler rules, allow and disallow paths, add your sitemap — then generate and download the file instantly. No signup.
* to target all bots.
Not all AI bots are the same, and most robots.txt tools treat them as one checkbox. Some only collect text to train models — blocking those costs you nothing. Others index your pages so ChatGPT, Claude and Perplexity can cite you with a clickable link — blocking those throws away real referral traffic. Pick deliberately.
Google retired its robots.txt Tester in December 2023, and the report that replaced it only shows the last fetched file for properties you own. This tester brings back what was lost: check any URL against any site's rules, and see exactly which line decides the outcome.
This tool does three jobs that usually need three separate tools. The Generate tab builds a properly formatted robots.txt file without writing any code — choose the bots you want to configure, add the paths to block or allow, and include your sitemap URL, with a live preview that updates as you type. The AI Crawlers tab turns the confusing world of GPTBot, ClaudeBot, PerplexityBot and Google-Extended into a set of deliberate choices, telling you in plain English what each block actually costs you. The Test & Validate tab checks any URL against any site's rules and shows you the exact line that decides the outcome.
The builder, the AI crawler panel and the rule matcher all run inside your browser — nothing you type is uploaded. The one exception is the "Load a live site's robots.txt" button: browsers are not allowed to read another domain's files directly, so that request passes through our server. Only the domain you enter is sent, and the fetched file is cached for five minutes.
Reviewed by the ToolBrainy Team · Rule matching runs in your browser · Last updated August 2026
Select a user-agent such as * (all bots) or Googlebot from the dropdown.
Click "Add path" under Disallow or Allow to control which pages crawlers can visit.
Copy the result or click "Download robots.txt" and upload it to the root of your site.
Configure separate rules for Googlebot, Bingbot, GPTBot, and any custom crawler.
See the final robots.txt format update in real time as you make changes.
Add one or more sitemap URLs so search engines can discover your content quickly.
Block GPTBot, ClaudeBot, PerplexityBot, CCBot and more — with a plain-English note on exactly what each block costs you.
Check whether a URL is crawlable and see the exact rule that decides it — the feature Google removed from Search Console in 2023.
Flags a stray Disallow: /, blocked CSS and JavaScript, missing sitemaps and directives Google stopped supporting.
Rules are built and matched locally. Only the "fetch a live site" button talks to our server, because browsers cannot read another domain's files.
Prevent crawlers from indexing /admin, /login or /dashboard URLs.
Add GPTBot and ChatGPT-User blocks to keep your content out of AI training data.
Disallow everything with a wildcard rule to prevent staging URLs from appearing in search.
Include your sitemap URL so Google and Bing discover new pages faster.
Allow Googlebot full access while blocking Bingbot from specific sections.
Block cart and checkout pages to focus crawl budget on product and category pages.
Robots.txt is a small plain-text file that lives in the root folder of your website, at an address like https://yourdomain.com/robots.txt. Its job is to tell search-engine crawlers which parts of your site they are welcome to visit and which parts they should leave alone. When a crawler such as Googlebot arrives, checking this file is usually the first thing it does.
The file follows the Robots Exclusion Protocol, a long-standing agreement that the major search engines respect. Each robots.txt file is built from one or more groups of rules. A group starts by naming a crawler with a User-agent line, then lists the paths that crawler may or may not request. It is a set of polite instructions rather than a lock, so it works best for guiding well-behaved bots, not for keeping secrets.
Before a crawler fetches your pages, it downloads your robots.txt file and reads the rules that apply to it. Each rule is a single line made up of a directive and a value. Here are the directives you will actually use:
* means every bot.Disallow: / blocks the whole site.A crawler matches paths from left to right, and the most specific rule wins. In the example below, the whole /private/ folder is closed off, but one file inside it stays open.
User-agent: * Disallow: /private/ Allow: /private/public-notice.html Sitemap: https://yourdomain.com/sitemap.xml
One line worth remembering: robots.txt controls crawling, not indexing. It asks a bot not to fetch a page. If you need a page kept out of search results, use a noindex meta tag instead, which we explain further down.
Search engines give every site a rough crawl budget — the number of pages they will fetch in a given period. A tidy robots.txt file helps them spend that budget on the pages you actually want ranked. This matters more as a site grows and picks up thin or duplicate URLs that add nothing to search results.
Used carefully, robots.txt is a quiet SEO win. Used carelessly, a single wrong line can hide your best pages, so it pays to check your rules before you publish them.
Robots.txt used to be a conversation with search engines. It is now also how you talk to AI companies. OpenAI, Anthropic, Google, Apple, Meta, Perplexity and others all publish user-agent names and say they honour robots.txt, which makes this small file the main lever site owners have over how their content is used.
The mistake almost everyone makes is treating "AI bots" as one group and blocking all of them. They are not one group. They fall into two categories that pull in opposite directions.
These collect text to train models. They do not send you visitors, and blocking them has no effect on how you rank or whether you get cited anywhere. If your only concern is your work being used as training data, these are the ones to block.
These index or fetch your pages so that a real person gets your content, with a visible link back to you. They are a referral channel, and an increasingly important one. Blocking them is the AI equivalent of blocking Googlebot.
If a bot's job is to learn from your content, blocking it is free. If its job is to show your content to a person, blocking it costs you a visitor. That is why the AI Crawlers tab above offers "Block training, keep answer engines" as its recommended preset — it is the setting most publishers actually want, and almost no tool offers it in one click.
Block AI training, keep the answer enginesUser-agent: GPTBot Disallow: / User-agent: ClaudeBot Disallow: / User-agent: Google-Extended Disallow: / User-agent: Applebot-Extended Disallow: / User-agent: CCBot Disallow: / User-agent: * Disallow:
Two caveats worth knowing. First, this is voluntary — robots.txt is an instruction, not a lock, and a bot that ignores it faces no technical barrier. If content must not be taken, put it behind a login. Second, blocking a training crawler does not remove anything a model already learned; it only applies to future crawls.
Most robots.txt problems come from a few repeat offenders. Watch out for these:
Disallow: / left over from a staging setup can wipe you out of search./wp-includes/ or asset folders can hurt how your pages are understood.noindex, not Disallow./Folder is not /folder. A trailing slash also changes the match.Real files are usually short. Here are the patterns you will reach for most often — copy one as a starting point and adjust the paths to match your site.
Allow every crawler everywhereUser-agent: * Disallow:Block the whole site (useful for staging)
User-agent: * Disallow: /Block a few folders but allow the rest
User-agent: * Disallow: /cart/ Disallow: /checkout/ Disallow: /search/ Sitemap: https://yourdomain.com/sitemap.xmlAllow Googlebot, block a specific bot
User-agent: Googlebot Disallow: User-agent: AhrefsBot Disallow: /Keep an AI scraper out of your content
User-agent: GPTBot Disallow: / User-agent: * Disallow:
WordPress creates a virtual robots.txt automatically, so a fresh install already has one even if there is no file on the server. It is basic, but for most sites it is enough. If you want more control, you can replace it with your own rules. A sensible starting point for a WordPress site looks like this:
robots.txt for WordPressUser-agent: * Disallow: /wp-admin/ Allow: /wp-admin/admin-ajax.php Sitemap: https://yourdomain.com/wp-sitemap.xml
Notice that /wp-admin/ is blocked while admin-ajax.php stays open, because some themes and plugins rely on it to load content. Avoid blocking /wp-includes/ or your uploads folder — doing so can stop Google from rendering your pages properly. If you use an SEO plugin like Yoast, Rank Math or All in One SEO, each one has a built-in robots.txt editor, so you can paste these rules straight into the dashboard without touching FTP.
Sitemap line helps search engines find everything worth crawling.Once you have generated your rules above, getting the file live takes only a minute. The exact steps depend on how you manage your site:
robots.txt — all lowercase, nothing extra.public_html) so it opens at yourdomain.com/robots.txt.yourdomain.com/robots.txt in your browser. If your rules show up, you are done.Google retired its robots.txt Tester in December 2023. The report that replaced it, inside Search Console, only shows the last version Google fetched for a property you have verified — it dropped the interactive "does this URL match these rules" check entirely, and you can no longer test another site's file at all. That is the gap the Test & Validate tab above fills.
Testing takes seconds and catches mistakes before search engines act on them. A few ways to check your file:
yourdomain.com/robots.txt and read the rules. It should return the file, not a 404.A robots.txt file sits at the root of your website and tells search-engine crawlers which pages or sections they are allowed or not allowed to visit. It follows the Robots Exclusion Standard and is read by bots before they crawl your site.
Well-behaved crawlers like Googlebot and Bingbot respect robots.txt rules. However, it is not a security measure. Malicious bots may ignore the file entirely. Use server-level access controls or password protection for truly private content.
The asterisk * is a wildcard that matches all crawlers. Rules under this block apply to every bot that reads the file, unless a more specific user-agent block overrides them.
Place the file at the root of your domain, for example https://yourdomain.com/robots.txt. It must be accessible at exactly that URL for crawlers to find it.
Yes. Add a dedicated block that starts with User-agent: Googlebot and give it its own Allow and Disallow lines. Google's crawler follows the most specific matching block, so those rules apply to Googlebot while your User-agent: * block still covers every other crawler. This tool lets you add per-crawler blocks so you can, for example, let Googlebot into a folder you block for everyone else.
Build your rules with the generator above, then in your Blogger dashboard go to Settings → Crawlers and indexing → Enable custom robots.txt, and paste the generated file. A custom robots.txt for Blogger (Blogspot) lets you control which pages Googlebot crawls, block search and label pages, and point crawlers to your sitemap for faster, cleaner indexing.
WordPress serves a virtual robots.txt by default. To use a custom one, generate your rules here and either upload a robots.txt file to your site root via FTP, or paste the rules into your SEO plugin — Yoast, Rank Math and AIOSEO all include a robots.txt editor. This gives you full control over crawling rules and sitemap discovery for your WordPress site.
No. A Disallow rule only asks a crawler not to fetch the page. If other sites link to that URL, it can still show up in results, often without a description. To keep a page out of search, add a noindex meta tag or use the removal tool in Search Console, and make sure the page is not blocked so Google can actually read the noindex.
Crawlers cache the file, so changes are not picked up instantly — Google typically refreshes it within about a day. Because of this, always confirm your new version is live and give it a little time before assuming a rule has taken effect. Google also reads only the first 500KB of the file, which is far more than a normal robots.txt needs.
Robots.txt works at the site level and controls crawling — whether a bot may request a URL at all. A meta robots tag (or the X-Robots-Tag header) works at the page level and controls indexing — whether a page may appear in search. Use robots.txt to manage crawl budget, and use noindex when you specifically want a page kept out of results.
It depends which part of ChatGPT you mean, because OpenAI runs three separate bots. GPTBot collects content to train models. OAI-SearchBot indexes pages so ChatGPT search can link to them. ChatGPT-User fetches a page live when someone asks about that URL. Blocking GPTBot keeps you out of training data while leaving your ChatGPT citations and referral traffic intact — that is what most people actually want. Blocking all three removes you from ChatGPT entirely. Use the AI Crawlers tab above to pick deliberately.
No. Google-Extended is not a crawler and has no role in Search. It is a robots.txt token that controls whether content Googlebot has already fetched may be used to train and ground Gemini. Google states that blocking it does not affect how a site is crawled, indexed or ranked in Google Search. It is the lowest-risk AI block available, which is why the "Block training, keep answer engines" preset includes it.
There is no single right answer, but the useful distinction is what a bot does with your content. Training crawlers like GPTBot, ClaudeBot, CCBot and Google-Extended learn from your pages and send you nothing, so blocking them has no traffic cost. Answer engines like OAI-SearchBot, PerplexityBot and Claude-SearchBot cite your pages with a clickable link, so blocking them removes a growing referral channel. Publishers who sell access to their archive tend to block training. Sites that want reach tend to keep the answer engines open.
The major ones say they do, and there is reasonable evidence that OpenAI, Anthropic, Google, Apple and Perplexity honour it. But robots.txt is a request, not a technical barrier — a bot that ignores it faces nothing stopping it, and some crawlers have been accused of doing exactly that. Treat robots.txt as the polite, standard way to state your position. If content genuinely must not be taken, put it behind a login or paywall rather than a crawl rule.
Open the Test & Validate tab above, paste your rules or fetch a live domain, enter the URLs you want to check one per line, and choose which crawler to test as. Each URL comes back allowed or blocked along with the exact directive and line number that decided it. The matching follows Google's specification: user-agent groups are matched by longest name, then the longest matching path wins, and when an Allow and a Disallow tie, Allow wins.
Yes. Every robots.txt file is public by design. Enter any domain in the Test & Validate tab and the tool loads that site's live file, audits it for problems and shows you which AI crawlers it currently blocks. It is a quick way to see how competitors handle crawl budget and AI access. Google's own Search Console cannot do this — it only shows files for properties you have verified.
Google retired the standalone robots.txt Tester in December 2023 as part of deprecating the last of the old Search Console tools. It was replaced by a robots.txt report that lists the files Google fetched for your verified property and any errors it hit, but that report does not let you test a URL against a set of rules, and it cannot look at a site you do not own. The tester above restores both of those abilities.
Written by the team that builds these tools — browse every ToolBrainy guide.
Free on Google Play
Enjoy our tools faster and more conveniently with the ToolBrainy app.