AIクローラー設定ナビ ・

AIクローラーを、robots.txt でどう扱うかを一枚に。

各社公式ドキュメントを確認して更新。今日のセルが点灯中。

収録クローラー
13
AI学習用
5
robots.txtに従う
9/13
ユーザー起点
2
01
13 件表示中
主要AIクローラーの user-agent・運営元・用途・robots.txt の挙動の一覧
User-agent / 運営元用途robots.txt の挙動当社robots
ClaudeBotAnthropicAI学習robots.txtに従う許可
anthropic-ailegacyAnthropicAI学習レガシー・要確認許可
CCBotCommon CrawlAI学習robots.txtに従う
Google-ExtendedGoogleAI学習robots.txtに従う許可
GPTBotOpenAIAI学習robots.txtに従う許可
Claude-SearchBotAnthropicAI検索robots.txtに従う許可
OAI-SearchBotOpenAIAI検索robots.txtに従う許可
PerplexityBotPerplexityAI検索robots.txtに従う許可
Claude-UserAnthropicユーザー操作robots.txtに従う許可
ChatGPT-UserOpenAIユーザー操作ユーザー起点=従わない場合あり許可
Perplexity-UserPerplexityユーザー操作ユーザー起点=従わない場合あり許可
GoogleOtherGoogleその他robots.txtに従う
OAI-AdsBotOpenAIその他公式明記なし・要確認
02

すべてのAIクローラーを許可する(AIに読ませたい)

robots.txt(すべてのAIクローラーを許可する(AIに読ませたい))
User-agent: *
Allow: /

# AIクローラーを明示的に許可
User-agent: GPTBot
Allow: /

User-agent: OAI-SearchBot
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: Claude-SearchBot
Allow: /

User-agent: PerplexityBot
Allow: /

User-agent: Google-Extended
Allow: /

Sitemap: https://example.com/sitemap.xml

AI学習だけ拒否し、AI検索は許可する

robots.txt(AI学習だけ拒否し、AI検索は許可する)
# --- AI学習クローラーを拒否 ---
User-agent: GPTBot
Disallow: /

User-agent: ClaudeBot
Disallow: /

User-agent: anthropic-ai
Disallow: /

User-agent: Google-Extended
Disallow: /

User-agent: CCBot
Disallow: /

# --- AI検索はそのまま許可(何も書かなければ許可) ---
User-agent: OAI-SearchBot
Allow: /

User-agent: PerplexityBot
Allow: /

すべてのAIクローラーを拒否する

robots.txt(すべてのAIクローラーを拒否する)
User-agent: GPTBot
Disallow: /

User-agent: OAI-SearchBot
Disallow: /

User-agent: ClaudeBot
Disallow: /

User-agent: Claude-SearchBot
Disallow: /

User-agent: anthropic-ai
Disallow: /

User-agent: PerplexityBot
Disallow: /

User-agent: Google-Extended
Disallow: /

User-agent: CCBot
Disallow: /
03
04