Module 6 min
Crawler Access
robots.txt directives are per-user-agent; your allow/deny choices decide which engines may ingest you at all.
Why it mattersBlocking a training bot to protect IP can also remove you from that engine's answers.
Definition & Foundation
What it is, in plain words
Crawler access is the first binary gate in GEO: before retrieval, reranking, or citation can happen, an engine's bot must actually fetch your page and get a 200 with full HTML. The trap is that access has a chain of independent checkpoints (robots.txt, then your CDN/WAF, then any bot-management layer, then rendering), and any one of them can silently block a bot your robots.txt cheerfully allows. "Allowed in robots.txt" is a request, not a guarantee.
This node is the end-to-end verification discipline; the per-vendor fleet map (which OpenAI/Anthropic/Perplexity/Google bots do which job) lives in AI Crawlers. The stakes are high because the economics now pull toward blocking: Cloudflare measured crawl-to-referral ratios around 14:1 for Google but 1,700:1 for OpenAI, and ~71,000:1 for Anthropic's crawler, and since mid-2025 Cloudflare blocks AI crawlers by default on many new zones. The skill is making access an explicit, verified decision instead of an accident of your infrastructure's defaults.
The Access Chain
Four checkpoints, any of which can silently block you
robots.txt
Per-user-agent allow/deny rules: your intended policy. Name each bot explicitly rather than relying on wildcards, and split the decision: training bots are a licensing question, retrieval and user bots are a visibility question. See the per-bot map in AI Crawlers.
CDN / WAF
Your CDN, firewall, or security plugin can 403 or challenge AI user-agents regardless of robots.txt. "Block bad bots" presets and default AI-crawler blocks (Cloudflare since mid-2025) are the most common cause of a brand vanishing from an engine with a clean robots.txt.
IP / bot verification
User-agent strings can be spoofed, so real bots publish IP ranges (or reverse-DNS) to confirm identity. Verification matters both ways: don't block a legitimate bot mistaken for a faker, and don't let a fake OAI-SearchBot skew your logs.
The render handoff
A 200 with an empty JavaScript shell is a fetch that delivered nothing citable. Access only counts if the bot receives the actual content in the HTML, which is why this node hands directly to Rendering & Speed.
Myths vs Reality
Common misreadings, corrected
Putting It to Work
Verify the whole chain, not just the file
The work is proving that access is real end to end (from stated policy through CDN, WAF, and rendering) and keeping it that way as your infrastructure changes underneath you.
The access-verification playbook
Confirm the policy in robots.txt
Fetch /robots.txt and read it: are the AI bots you care about named explicitly, with training vs retrieval decided deliberately? Fix accidental wildcards and legacy blanket blocks first; the per-bot reference is in AI Crawlers.
Fetch as each bot and check for a real 200
Use curl -A "OAI-SearchBot" (and each other user-agent) against your key pages. You're looking for status 200 and full HTML, not a 403, not a challenge page, not an empty shell. This single test catches most silent WAF/CDN blocks.
Audit the CDN / WAF / security layer
Check your CDN's AI-crawler settings (Cloudflare AI Crawl Control et al.), firewall rules, and any security plugin's bot presets. Since mid-2025 many defaults block AI bots out of the box; align these with your robots.txt so both tell the same story.
Verify bot identity by IP
Confirm real bots against their published IP ranges or reverse-DNS, so you neither block a legitimate crawler nor trust a spoofed one. This keeps your allow-list precise and your access logs honest.
Watch the logs: access is what they show
Pull 30 days of server/CDN logs and count hits per AI user-agent. Retrieval bots you allow should appear regularly; a bot going silent is your early-warning that a checkpoint changed. Policy is what the logs say, not what the file says.
Verification Checks
How to know it's really done
Your access is real when the logs and fetch tests agree with your policy. Click a check to mark it verified:
Update Cadence & Dependencies
Keeping it alive
Works together with
Impact Weightage & Results TAT
What it moves, and how fast
A binary gate: retrieval access is on or off, and one wrong checkpoint zeroes out every other GEO investment on the affected engine. Verifying the whole chain is the highest-ROI technical work there is.
Mostly orthogonal to classic SEO, but the same log-and-fetch discipline catches Googlebot/Bingbot access problems that hurt both games.
Editorial estimate of this node's contribution to your total GEO / SEO outcome. Nodes overlap, so weights don't sum to 100.
Tools for this
Go deeper from Technical GEO
Voices to follow
- Michael King · iPullRank The deepest technical explanations of how AI retrieval and ranking actually work.
- Crystal Carter · Wix Structured data and AI-search education with concrete implementation examples.
- Aleyda Solis · Orainti Practical frameworks, checklists and free learning roadmaps for search & AI search.
Always current
These links resolve live: what you get is generated or filtered the moment you click.
Fresh from the field feed refreshed July 8, 2026
- Jul 7 AI Search: Is Your Content Strategy Accidentally Recommending Your Competitors? Search Engine Journal
- Jul 6 Google Answers Question About LLMs-Author.txt For SEO via @sejournal, @martinibuster Search Engine Journal
- Jul 3 Lighthouse Fails Your Llms.txt Without Markdown Links via @sejournal, @slobodanmanic Search Engine Journal