如何在 IIS 或 web.config 中将 X-Robots-Tag HTTP 标头设置为“index; follow”?

问题描述 投票:0回答:2

我得到“X-Robots-Tag:noindex;” nofollow' 在我的响应标头中。我希望将其设置为“index;”关注'。

iis web-crawler seo pagerank
2个回答
0
投票

您可以在iis中使用url rewrite来修改响应头,URL Rewrite模块可以在这里下载:下载URL Rewrite模块

更多关于如何修改HTTP响应头的信息可以参考以下链接:

修改HTTP响应头

https://port135.com/change-remove-response-headers


0
投票

我认为 customHeaders 标签也是一个选项,并且是我在该用例中的首选选项,因为不需要安装额外的模块并且更容易配置。

将此部分添加到 web.config 的根 configuration 标签中:

<system.webServer>
    <httpProtocol>
        <customHeaders>
            <add name="X-Robots-Tag" value="index; follow" />
        </customHeaders>
    </httpProtocol>
</system.webServer>

这里是文档:IIS 自定义标头文档

© www.soinside.com 2019 - 2024. All rights reserved.