Skip to content

Mention X-Robots-Tag header as alternative for bing #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/additional-steps/bing.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ Fortunately, Bing supports a relatively simple opt-out method, requiring an addi

## How to opt-out of AI training

You must add a metatag in the `<head>` of your webpage. This also needs to be added to every page on your website.
You must add a metatag in the `<head>` of your webpage or set the [X-Robots-Tag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Robots-Tag) HTTP header in your response. This also needs to be added to every page or response on your website.

The line you need to add is:
If using the metatag, the line you need to add is:

```plaintext
<meta name="robots" content="noarchive">
```
Or include the HTTP response header:
```plaintext
X-Robots-Tag: noarchive
```

By adding this line, you are signifying to Bing: "Do not use the content for training Microsoft's generative AI foundation models."
By adding this line or header, you are signifying to Bing: "Do not use the content for training Microsoft's generative AI foundation models."

## Will my site be negatively affected

Expand Down