{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Server snippets" } }
{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Generate Nginx, Apache, Netlify, and Vercel rules from one policy." } }
Header ควบคุมดัชนีสินทรัพย์
เลือกกฎของสินทรัพย์ แล้วสร้าง config X-Robots-Tag สำหรับ Nginx, Apache, Netlify และ Vercel ก่อนเปิดเว็บไซต์
location ~* \.(pdf)$ {
add_header X-Robots-Tag "noindex, nofollow, noarchive" always;
}
location ~* \.(jpg|png|webp)$ {
add_header X-Robots-Tag "noindex, noimageindex" always;
}# แผน X-Robots-Tag Header
- โปรเจกต์: Website launch assets
- Bot เป้าหมาย: all
- กฎ: 2
- ร้ายแรง: 0
- คำเตือน: 0
- พร้อม: 2
## Nginx
```nginx
location ~* \.(pdf)$ {
add_header X-Robots-Tag "noindex, nofollow, noarchive" always;
}
location ~* \.(jpg|png|webp)$ {
add_header X-Robots-Tag "noindex, noimageindex" always;
}
```
## Apache
```apache
# Requires mod_headers
<FilesMatch "\.(pdf)$">
Header set X-Robots-Tag "noindex, nofollow, noarchive"
</FilesMatch>
<FilesMatch "\.(jpg|png|webp)$">
Header set X-Robots-Tag "noindex, noimageindex"
</FilesMatch>
```
## Netlify
```text
/downloads/*.pdf
X-Robots-Tag: noindex, nofollow, noarchive
/assets/originals/*
X-Robots-Tag: noindex, noimageindex
```
## Vercel
```json
{
"headers": [
{
"source": "/downloads/(.*).pdf",
"headers": [
{
"key": "X-Robots-Tag",
"value": "noindex, nofollow, noarchive"
}
]
},
{
"source": "/assets/originals/(.*)",
"headers": [
{
"key": "X-Robots-Tag",
"value": "noindex, noimageindex"
}
]
}
]
}
```{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Asset indexing rules" } }
{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Generate X-Robots-Tag header rules for PDFs, images, downloads, and other assets. Plan noindex, nofollow, noarchive, and noimageindex directives for Nginx, Apache, Netlify, and Vercel." } }
{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Generate Nginx, Apache, Netlify, and Vercel rules from one policy." } }
{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Choose noindex, nofollow, noarchive, and noimageindex for different file groups." } }
{ "t": 0, "b": { "t": 2, "i": [ { "t": 3 } ], "s": "Avoid accidentally indexing private PDFs, originals, or temporary assets." } }