{ "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
자산 규칙을 선택하고 출시 전 Nginx, Apache, Netlify, Vercel용 X-Robots-Tag 설정을 생성합니다.
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." } }