Skip to content

Commit fe1267e

Browse files
authored
Merge pull request #131 from Mihitoko/mention-x-robots-tag-for-bing
Mention X-Robots-Tag header as alternative for bing
2 parents 7a2e6cb + 9297c7d commit fe1267e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/additional-steps/bing.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ Fortunately, Bing supports a relatively simple opt-out method, requiring an addi
1010

1111
## How to opt-out of AI training
1212

13-
You must add a metatag in the `<head>` of your webpage. This also needs to be added to every page on your website.
13+
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.
1414

15-
The line you need to add is:
15+
If using the metatag, the line you need to add is:
1616

1717
```plaintext
1818
<meta name="robots" content="noarchive">
1919
```
20+
Or include the HTTP response header:
21+
```plaintext
22+
X-Robots-Tag: noarchive
23+
```
2024

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

2327
## Will my site be negatively affected
2428

0 commit comments

Comments
 (0)