<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ben Santora</title>
    <description>The latest articles on DEV Community by Ben Santora (@bensantora1).</description>
    <link>https://dev.to/bensantora1</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3803566%2Fca7a811a-b429-45b2-9dcc-edd152d1339e.png</url>
      <title>DEV Community: Ben Santora</title>
      <link>https://dev.to/bensantora1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bensantora1"/>
    <language>en</language>
    <item>
      <title>AEO Isn't SEO: Why You Should Let Bots Crawl Your Site in 2026</title>
      <dc:creator>Ben Santora</dc:creator>
      <pubDate>Fri, 10 Jul 2026 10:40:36 +0000</pubDate>
      <link>https://dev.to/bensantora1/aeo-isnt-seo-why-you-should-let-bots-crawl-your-site-in-2026-15oi</link>
      <guid>https://dev.to/bensantora1/aeo-isnt-seo-why-you-should-let-bots-crawl-your-site-in-2026-15oi</guid>
      <description>&lt;p&gt;For twenty years, &lt;code&gt;robots.txt&lt;/code&gt; existed to keep bandwidth-hungry crawlers off your server. In 2026, for anyone who wants their work to actually be &lt;em&gt;found&lt;/em&gt;, that instinct is backwards.&lt;/p&gt;

&lt;p&gt;If your goal is showing up when someone asks Claude, ChatGPT, or Perplexity a question — not just ranking on page one of Google — you need AI crawlers hitting your pages. That's &lt;strong&gt;AEO: Answer Engine Optimization&lt;/strong&gt;, and it runs on a completely different mechanism than classic SEO.&lt;/p&gt;

&lt;p&gt;Here's what that actually means in practice, without the hand-waving.&lt;/p&gt;

&lt;h2&gt;
  
  
  The bots aren't one bot
&lt;/h2&gt;

&lt;p&gt;The biggest mistake I see (and made myself, initially) is treating "AI crawlers" as a single monolith you can allow or block with one &lt;code&gt;User-agent: *&lt;/code&gt; rule. They're not. Each provider runs &lt;em&gt;multiple&lt;/em&gt;, functionally distinct bots, and blocking one does nothing to the others:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI&lt;/strong&gt;: &lt;code&gt;GPTBot&lt;/code&gt; (training), &lt;code&gt;OAI-SearchBot&lt;/code&gt; (powers ChatGPT Search results), &lt;code&gt;ChatGPT-User&lt;/code&gt; (live fetch when a user clicks a citation)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic&lt;/strong&gt;: &lt;code&gt;ClaudeBot&lt;/code&gt; (training), &lt;code&gt;Claude-SearchBot&lt;/code&gt; (search indexing), &lt;code&gt;Claude-User&lt;/code&gt; (fetches a page at a user's direct request)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Perplexity&lt;/strong&gt;: &lt;code&gt;PerplexityBot&lt;/code&gt; (its search index crawler), &lt;code&gt;Perplexity-User&lt;/code&gt; (user-triggered fetches)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google&lt;/strong&gt;: &lt;code&gt;Google-Extended&lt;/code&gt; (opts you in/out of Gemini training specifically — separate from &lt;code&gt;Googlebot&lt;/code&gt;, which handles classic Search and isn't affected by this toggle)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;cite&gt;Blocking only ClaudeBot does not block Claude-SearchBot or Claude-User — each token needs its own directive&lt;/cite&gt;. The same logic applies across every vendor: training, search-indexing, and live-fetch are three separate decisions, not one.&lt;/p&gt;

&lt;p&gt;A concrete consequence: &lt;cite&gt;GPTBot scrapes content to train OpenAI's models, while OAI-SearchBot indexes content specifically for ChatGPT Search results&lt;/cite&gt; — so blocking &lt;code&gt;GPTBot&lt;/code&gt; alone doesn't remove you from OpenAI's training pool if you left &lt;code&gt;OAI-SearchBot&lt;/code&gt; open, and vice versa. You have to decide, per bot, which behavior you're actually opting in or out of.&lt;/p&gt;

&lt;h2&gt;
  
  
  robots.txt is a request, not a lock
&lt;/h2&gt;

&lt;p&gt;Worth being blunt about: &lt;cite&gt;robots.txt was standardized as RFC 9309 in 2022, but it's a voluntary request that well-behaved crawlers honor — it carries no legal force and doesn't technically block access&lt;/cite&gt;. Real enforcement, if you need it, happens at the server or CDN layer.&lt;/p&gt;

&lt;p&gt;Most of the major players do comply. &lt;cite&gt;GPTBot, ClaudeBot, and PerplexityBot each identify themselves with a distinct user-agent string and obey robots.txt rules&lt;/cite&gt;. But not everyone plays fair — &lt;cite&gt;Perplexity has been caught running undeclared crawlers that rotate user-agents, IPs, and ASNs specifically to evade no-crawl directives&lt;/cite&gt;, and Cloudflare's own investigation concluded that robots.txt alone isn't a reliable defense against that behavior if a bot chooses to ignore it. If you actually need a hard block against a non-compliant crawler, that's a WAF/CDN-level rule, not a text file.&lt;/p&gt;

&lt;h2&gt;
  
  
  The canonical tag claim doesn't hold up
&lt;/h2&gt;

&lt;p&gt;I want to flag something I said elsewhere that I'd retract: the idea that a &lt;code&gt;rel="canonical"&lt;/code&gt; tag is "the key" signal telling AI crawlers "this is the source of truth." That's not documented anywhere I could verify. Canonical tags are a Google/Bing convention for deduping search index entries — there's no confirmed spec showing GPTBot, ClaudeBot, or PerplexityBot parse and weight it the same way for training ingestion or answer attribution. Treat that one as an unverified guess, not a fact to build a strategy around.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually moves the needle
&lt;/h2&gt;

&lt;p&gt;Based on current documentation and crawler behavior:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Explicit per-bot &lt;code&gt;robots.txt&lt;/code&gt; entries.&lt;/strong&gt; List &lt;code&gt;GPTBot&lt;/code&gt;, &lt;code&gt;OAI-SearchBot&lt;/code&gt;, &lt;code&gt;ChatGPT-User&lt;/code&gt;, &lt;code&gt;ClaudeBot&lt;/code&gt;, &lt;code&gt;Claude-SearchBot&lt;/code&gt;, &lt;code&gt;Claude-User&lt;/code&gt;, &lt;code&gt;PerplexityBot&lt;/code&gt;, &lt;code&gt;Perplexity-User&lt;/code&gt;, and &lt;code&gt;Google-Extended&lt;/code&gt; individually. A blanket &lt;code&gt;Allow: /&lt;/code&gt; for &lt;code&gt;*&lt;/code&gt; doesn't give you granular control over training vs. search vs. live-fetch.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Server-rendered, crawlable HTML.&lt;/strong&gt; Not every AI crawler executes JavaScript. If your content only appears after client-side rendering, some bots simply won't see it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Structured data (schema.org).&lt;/strong&gt; This one has actual documented consumption by search and AI systems, unlike the canonical-tag claim above.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;code&gt;llms.txt&lt;/code&gt;.&lt;/strong&gt; An emerging, &lt;em&gt;not yet standardized&lt;/em&gt; convention (proposed by Answer.AI's Jeremy Howard and collaborators) that gives LLMs a curated map of your site's most important content, similar in spirit to &lt;code&gt;sitemap.xml&lt;/code&gt;. &lt;cite&gt;Adoption sits at around 10% of domains&lt;/cite&gt; as of mid-2026, so it's early — but it's low-effort and zero-risk to add.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Check your CDN layer separately from your robots.txt.&lt;/strong&gt; This is the one people miss most. If you're on Cloudflare or a similar service, its bot-management dashboard can silently override what your actual &lt;code&gt;robots.txt&lt;/code&gt; file says. &lt;cite&gt;Research on Cloudflare's network found a meaningful share of sites accidentally blocking major AI crawlers at the CDN while their robots.txt says "allow"&lt;/cite&gt; — the two layers have to agree, or your intended policy does nothing.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  A sane starting point
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight conf"&gt;&lt;code&gt;&lt;span class="c"&gt;# Allow AI search / retrieval (what drives citations)
&lt;/span&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;OAI&lt;/span&gt;-&lt;span class="n"&gt;SearchBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;ChatGPT&lt;/span&gt;-&lt;span class="n"&gt;User&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Claude&lt;/span&gt;-&lt;span class="n"&gt;SearchBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Claude&lt;/span&gt;-&lt;span class="n"&gt;User&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;PerplexityBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Perplexity&lt;/span&gt;-&lt;span class="n"&gt;User&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="c"&gt;# Training crawlers — allow if you want long-term model familiarity
&lt;/span&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;GPTBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;ClaudeBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /
&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Google&lt;/span&gt;-&lt;span class="n"&gt;Extended&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="c"&gt;# Standard search engines, unchanged
&lt;/span&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: *
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="n"&gt;Sitemap&lt;/span&gt;: &lt;span class="n"&gt;https&lt;/span&gt;://&lt;span class="n"&gt;yourdomain&lt;/span&gt;.&lt;span class="n"&gt;com&lt;/span&gt;/&lt;span class="n"&gt;sitemap&lt;/span&gt;.&lt;span class="n"&gt;xml&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Adjust the training-bot section if you have genuinely proprietary content you don't want memorized — that's a legitimate reason to &lt;code&gt;Disallow&lt;/code&gt; &lt;code&gt;GPTBot&lt;/code&gt;/&lt;code&gt;ClaudeBot&lt;/code&gt;/&lt;code&gt;Google-Extended&lt;/code&gt; specifically while still keeping the search/retrieval bots open for citations. But for a personal site, a portfolio, or a blog whose entire point is being read — open the gate.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you're auditing your own &lt;code&gt;robots.txt&lt;/code&gt;, check your server logs for 403s against &lt;code&gt;OAI-SearchBot&lt;/code&gt;, &lt;code&gt;Claude-User&lt;/code&gt;, and &lt;code&gt;PerplexityBot&lt;/code&gt; specifically — that's the fastest way to catch an accidental block costing you AI-search visibility.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Ben Santora - July 2026&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>webdev</category>
      <category>robotstxt</category>
    </item>
  </channel>
</rss>
