Dark green cover graphic with abstract rounded shapes and the headline AI crawler rules in your Wix robots.txt, plus the AIScan wordmark.
Dark green cover graphic with abstract rounded shapes and the headline AI crawler rules in your Wix robots.txt, plus the AIScan wordmark.
AI Readiness

How to declare allow/deny rules for named AI crawlers in robots.txt on Wix

Wix generates your robots.txt. Here is how to add allow and deny rules for named AI crawlers in the Robots.txt Editor, and how to check the rules went live.

AAsif Rahman 7 Sept 2026 7 min read
#robots.txt#AI crawlers#Wix#bot access

This guide covers B2 · Bot Access, D1 · Discoverability.

Table of contents

Wix writes your robots.txt for you. Fetched on 7 September 2026, the file at www.wix.com/robots.txt ran to 90 non-empty lines: one User-agent: * group, 87 Disallow rules, and a single Sitemap: line at the bottom. Adding a rule for GPTBot or ClaudeBot takes about two minutes in the Robots.txt Editor, and it does something most guides never mention: the crawler you just named stops reading every one of those 87 lines. That trade is the whole of this job on Wix.

Quick summary

If you want toDo this on WixWhere it livesTime
Stop AI training crawlersAdd named groups for GPTBot, ClaudeBot, CCBot, Google-ExtendedSEO & GEO > Tools and settings > Robots.txt Editor2 min
Stay citable in ChatGPT and PerplexityLeave OAI-SearchBot and PerplexityBot out of your deny listSame editor0 min
Undo a bad editReset to Default, then ResetSame editor1 min
Keep one page out of AI OverviewsTick nosnippetEditor > Pages & Menu > SEO basics > Advanced SEO1 min
Confirm the rules are livenpx aiscan-cli yoursite.com, read rows D1 and B2aiscan.site1 min

Wix names four crawlers in its own worked example. One of the four appears in no operator token list we hold.

Wix keeps rewriting the file you are about to edit

According to Wix's article Editing Your Site's Robots.txt File, read on 7 September 2026, the platform maintains the file continuously: "If you need to update a page, Wix automatically updates your robots.txt after you publish the page. If you change your site's settings, your robots.txt file is updated immediately."

That is the opposite of how the other generated file on Wix behaves. As covered in publishing a valid llms.txt on Wix, Wix says that once you edit llms.txt, "it will stop updating automatically so your changes are preserved." Robots.txt carries no such lock: your named groups sit alongside a * group Wix goes on regenerating around them. Wix also puts a warning above the procedure worth repeating: "Wix Customer Care cannot help you with any changes you make to your robots.txt file."

Open the Robots.txt Editor

Wix documents one path for reading, editing and resetting:

  1. Go to SEO & GEO in your site's dashboard.
  2. Scroll down to Tools and settings.
  3. Click Robots.txt Editor.
  4. Click View File.
  5. Type your directives under This is your current file.
  6. Click Save Changes, then Save.

To undo everything, the same four clicks then Reset to Default and Reset. There is no file manager and no FTP on Wix, so this panel is the only way in.

A named group replaces the defaults, it does not extend them

RFC 9309 section 2.2.1 states verbatim: "Crawlers MUST use case-insensitive matching to find the group that matches the product token and then obey the rules of the group." Groups for different tokens do not stack; the spec merges only groups matching the same token.

Every rule Wix generated sits under User-agent: *. The moment you add User-agent: GPTBot, that crawler reads your group and ignores the * group entirely. A group of Disallow: / is harmless, because you blocked everything anyway. Write Allow: / under a named token and you have handed that crawler the internal paths Wix was keeping shut.

The safe shape on Wix: name a crawler only to deny it, and let the rest fall through to *.

Wix's four example names, checked against 2026

Wix's article Blocking AI Crawlers from Your Site gives this worked example: CCBot, GPTBot, ChatGPT-User and BingAI, each with Disallow: /. Checked against our own AI crawler user-agent list:

Token in Wix's exampleWhat it actually doesWorth blocking?
GPTBotOpenAI training crawlerYes, if you are opting out of training
CCBotCommon Crawl, the open training corpusYes, same reason
ChatGPT-UserLive fetch triggered by a person in ChatGPTUsually no, this is a visitor
BingAIAppears in no operator token list we holdNo effect either way

Missing from the example and crawling in 2026: ClaudeBot, PerplexityBot, Google-Extended, meta-externalagent and Applebot-Extended. Wix's own FAQ is honest about the ceiling: "some crawlers may ignore these directives, so it's not an airtight solution."

Rules that keep you in the answers and out of the training set

The distinction that costs traffic is training versus retrieval. GPTBot trains; OAI-SearchBot puts you in ChatGPT's cited answers. Block the second by accident and you leave the surface you were trying to win. Paste this under This is your current file, below what is already there:

User-agent: GPTBot
Disallow: /

User-agent: ClaudeBot
Disallow: /

User-agent: CCBot
Disallow: /

User-agent: Google-Extended
Disallow: /

Note the absences: OAI-SearchBot, PerplexityBot and Bingbot are unlisted, so they keep matching * and keep indexing you. One syntax rule from RFC 9309 section 2.2.1 catches people out: a product token "MUST contain only uppercase and lowercase letters", plus hyphen and underscore. No slashes, no version numbers, no wildcards in the name.

Read the file back from your own domain

Wix says to check the file by adding /robots.txt to your root domain. Assert the content type, not the status code:

curl -sI https://yoursite.com/robots.txt

A working file answers 200 with content-type: text/plain. If you get text/html, you are reading an error page, not a file. Then confirm your group survived the save:

curl -s https://yoursite.com/robots.txt | grep -A1 -i 'gptbot'

Expected output is the two lines you typed. An empty result means the save did not commit; reopen View File rather than typing it somewhere else.

When the editor is not the problem

Wix's documentation is unusually direct that most robots.txt complaints are not robots.txt complaints. If Wix Site Inspection or Google Search Console reports Blocked by robots.txt, Wix says "you don't need to edit your robots.txt file, especially if you never edited it before."

What you seeWhat it usually is
Blocked by robots.txt on a page you never namedIndexing switched off for that page in the editor or in SEO Settings
A page missing from the file's reachThe page is password protected or members only
Your rules are there but a bot still crawlsA crawler that ignores the protocol, which Wix concedes happens
A page still quoted in an AI Overviewrobots.txt does not govern snippets, nosnippet does

For that last row: in the editor, Pages & Menu > More Actions > SEO basics > Advanced SEO > Robots meta tag, and tick nosnippet, which Wix describes as preventing a page's content "from being used as a direct input for AI overviews". One caution before denying broadly: Wix warns that blocking AI crawlers "may limit NLWeb functionality, as AI agents need access to view your structured content."

Where AIScan fits, and where it doesn't

Run the scan first and read two rows: npx aiscan-cli yoursite.com, or paste the URL at AIScan. D1 confirms a robots.txt exists and parses at your origin root. B2 is the row this guide is about, whether the file names AI crawlers explicitly instead of leaving them to *. Across our scan corpus the whole bot-access dimension has a median of zero, so explicit rules are still an easy differentiator.

What the scan cannot see: it fetches with its own identity, so it reads the file a browser gets rather than the file a given crawler gets, and it cannot tell you whether a crawler obeyed. That needs server logs, which Wix does not expose.

Wix hosts at the origin root, which spares you the failure mode that makes this hard elsewhere: on a docs framework deployed under a repository path the same file becomes void, as covered in robots.txt rules for AI bots on Docusaurus. If you also run a WordPress blog next to the Wix site, ThinkRank handles robots.txt, robots meta, schema and llms.txt from one plugin there and migrates settings from Rank Math, Yoast, AIOSEO and SEOPress; Rank Math and Yoast both edit robots.txt too.

Publish, then scan

Save the file, publish the site, and re-run npx aiscan-cli yoursite.com. Read B2 first and D1 second. If B2 still fails, fetch the file and check your named groups are spelled with the exact tokens above, because a typo in a product token is ignored silently rather than reported. More platform walkthroughs are in the AIScan guides.

Frequently asked questions

I saved my GPTBot rule but it is not in the file. What went wrong?

The save is two clicks, not one. In the Robots.txt Editor you click Save Changes and then Save; stopping after the first leaves the edit uncommitted. Reopen SEO & GEO > Tools and settings > Robots.txt Editor > View File and check the text is actually there before fetching the file again. Search engines also cache robots.txt, so your own curl will show the change before a crawler sees it.

Google Search Console says Blocked by robots.txt on a page I never named. Why?

Wix's own guidance is that this is usually not a robots.txt problem at all: "you don't need to edit your robots.txt file, especially if you never edited it before." Check whether indexing is switched off for that page in your site's editor or SEO Settings, and whether the page is password protected or members only. Editing robots.txt to fix it will not help and can make things worse.

I added deny rules and my pages fell out of Google. How do I undo it?

Go to SEO & GEO > Tools and settings > Robots.txt Editor > View File, click Reset to Default, then Reset. That restores the file Wix generates. Recovery is not instant: search engines refresh their cached copy of robots.txt on their next crawl, and Wix suggests submitting your homepage for reindexing if you need it sooner.

My rules are in the file but a crawler fetched my pages anyway. Is the file broken?

Probably not. RFC 9309 says plainly that these rules "are not a form of access authorization", and Wix concedes the same point in its own FAQ: "some crawlers may ignore these directives, so it's not an airtight solution." A robots.txt rule is a request. If you need enforcement rather than a request, that is a firewall or CDN job, not a robots.txt one.

Does blocking GPTBot remove me from ChatGPT's answers?

No. GPTBot is OpenAI's training crawler. OAI-SearchBot is the one that builds the index behind ChatGPT's cited answers, and they are separate tokens with separate rules. Deny GPTBot and leave OAI-SearchBot alone if you want to opt out of training while staying citable.

Will editing robots.txt stop Wix maintaining it, the way editing llms.txt does?

No, and this is the useful difference between the two files on Wix. Wix documents that llms.txt "will stop updating automatically" once you edit it. For robots.txt it says the opposite: "Wix automatically updates your robots.txt after you publish the page", and settings changes update the file immediately. Your named crawler groups sit alongside a * group Wix keeps regenerating.

Is BingAI a real crawler token?

It appears in Wix's own worked example but not in our AI crawler user-agent inventory, which tracks the tokens each operator publishes and documents. Adding it costs nothing and does nothing. The names doing measurable crawling in 2026 are GPTBot, ClaudeBot, CCBot, PerplexityBot, Google-Extended, meta-externalagent and Applebot-Extended.

Should I block ChatGPT-User along with GPTBot?

Usually not. ChatGPT-User is the fetch triggered when a person in ChatGPT asks about your page, so blocking it turns away something closer to a visitor than a scraper. Most site owners who want out of training block GPTBot, ClaudeBot, CCBot and Google-Extended, and leave the live and retrieval agents alone.

Related guides