如何解决IIS8.5中的重定向循环错误

时间:2018-07-05 13:18:41

标签: asp.net asp.net-mvc iis web-config

您好,由于存在太多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>

任何帮助将不胜感激。

0 个答案:

没有答案