是否使用 .htaccess 文件为某些 URL 添加 "noindex" 属性?
Is there add "noindex" attribute for some URLs using .htaccess file?
例如,我想屏蔽这个URL:
example.com/?this-url
通常我使用 robots.txt 文件:
User: *
Disallow: /?$
要让机器人不要为您的文档编制索引,you have two options:提供 HTML 元素或发送 HTTP header。后一个选项可以在 .htaccess 中使用:
Header set X-Robots-Tag "noindex"
(Header
directive from the Apache module mod_headers
)
例如,我想屏蔽这个URL:
example.com/?this-url
通常我使用 robots.txt 文件:
User: *
Disallow: /?$
要让机器人不要为您的文档编制索引,you have two options:提供 HTML 元素或发送 HTTP header。后一个选项可以在 .htaccess 中使用:
Header set X-Robots-Tag "noindex"
(Header
directive from the Apache module mod_headers
)