可能这是一个老问题,但无法解决。请求帮助。
任何用户使用以下网址时
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>