您好,由于存在太多301重定向请求,我在实时页面中遇到了重定向循环错误,无法查看我想要的Google搜索机器人。有趣的是,当我在本地测试页上对其进行测试时,就可以了。 如何使用我的web.config类结束此循环?
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP to HTTPS Redirect" stopProcessing="true" >
<match url="(.*robots.txt)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
任何帮助将不胜感激。