world-game/site/plugins/kirby-seo/docs/2_customization/03_robots-noai.md
isUnknown 58c31ea391
All checks were successful
Deploy / Deploy to Production (push) Successful in 22s
feat: intégration plugin Kirby SEO
- Ajout de tobimori/kirby-seo via Composer
- snippet('seo/head') dans header.php (remplace les meta manuels)
- snippet('seo/schemas') dans footer.php pour JSON-LD
- Onglet SEO ajouté dans site.yml et tous les blueprints de pages
- Configuration SEO dans config.php (sitemap, robots, canonicalBase TODO)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-25 12:59:18 +01:00

1.4 KiB

title intro
Opting Out of AI Training Signal to AI crawlers that your content should not be used for training

The noai and noimageai robot directives tell AI crawlers not to use your content or images for training. These are not an official standard, but were introduced by DeviantArt and Spawning and are respected by some AI providers. Like all robot directives, they are signals, not hard blocks.

Kirby SEO has a types option that controls which robot directives are available. Add ai and imageai to the list:

<?php
// site/config/config.php

return [
  'tobimori.seo' => [
    'robots' => [
      'types' => ['index', 'follow', 'archive', 'imageindex', 'snippet', 'ai', 'imageai'],
    ],
  ],
];

The new fields show up in the robots section of the SEO tab. If you previously disabled robots.pageSettings, you need to re-enable it for the fields to appear.

By default, all directives are set to "Yes" (allowed). To opt out of AI training, an editor needs to set the AI Training and AI Image Training fields to "No". The plugin then outputs noai and noimageai in the robots meta tag.

If you want to opt out for all pages at once, set it on the Site level instead of per page. Translations for the field labels are included in the plugin.