URL重定向https到http IIS 7.5

时间:2014-07-01 20:01:39

标签: asp.net-mvc iis url-rewriting web-config iis-7.5

可能这是一个老问题,但无法解决。请求帮助。

任何用户使用以下网址时

https://www.xxxxx.com/
https://dev.xxxxx.com/

应用应重定向到Urls

下方
http://www.xxxxx.com/
http://dev.xxxxx.com/

App:MVC和WEB API IIS:ISS 7.5

以下是我在config中的代码:

<rewrite>
  <rules>
    <rule name="Redirect to HTTP" stopProcessing="true">
      <match url="(.*)" />
      <conditions>
        <add input="{HTTPS}" pattern="on" ignoreCase="true" />
      </conditions>
      <action type="Redirect" url="http://{HTTP_HOST}/" redirectType="Permanent" />
    </rule>
    </rules> 
</rewrite>

0 个答案:

没有答案