StoreCheck Visibility · Guides
In short: Since July 2025 Cloudflare blocks AI crawlers by default on new sites, and Bot Fight Mode can behave similarly — owners think robots.txt is open while the edge returns 403. Verifying takes one curl command; disabling takes three minutes in the Cloudflare dashboard.
| AI/arama botlarına edge engeli | %2 |
Method: 209 completed self-serve checks (anonymized — no domains). Rows show the share of sites where this check came back warn/fail. Data: 2026-09-23. Cite via the open research dataset →
Because there are two separate layers: your site's declaration (robots.txt — what you wrote) and the network's behaviour (Cloudflare WAF/bot rules — what you don't see). Even with zero blocks in robots.txt, the edge layer can return 403 Forbidden or a challenge page to bots. Open the site in your browser and everything looks normal — the problem only fires on requests carrying a bot user agent.
Run two requests in a terminal:
curl -s -o /dev/null -w "%{http_code}" https://yourdomain.com/ — your normal request should return 200.curl -s -o /dev/null -w "%{http_code}" -A "OAI-SearchBot" https://yourdomain.com/ — if the same page returns 403/503, an edge block exists.Try other bots too: -A "ChatGPT-User", -A "ClaudeBot", -A "PerplexityBot". Seeing which one is blocked helps identify which rule fires. Our scan does this for five bots automatically.
Conversely — deliberately blocking AI bots is a legitimate choice too (content licensing, bandwidth). What matters is that the block is your decision: writing it in robots.txt (declaration) or enforcing via a WAF rule (enforcement) knowingly is different from staying blocked without realising. The scan reports both situations separately.
Yes, and it's the most common hidden problem — robots.txt is only a declaration; edge layers like Cloudflare block independently of it.
Yes — other CDNs, hosting WAFs and CMS security plugins like Wordfence produce similar blocks. The verification command is the same.
Not immediately — bots need to rediscover your site and engines need to process the content. Removing the block is the prerequisite, not a results guarantee.
This page is technical guidance; no ranking or AI citation guarantee is claimed.