ASP.NET IIS 设置http跳转

首先网站要同时绑定http和https

 

 

 然后在微软官网下载URL重写工具

URL Rewrite : The Official Microsoft IIS Site

然后在配置文件中填入以下内容,并改为自己需要跳转的url

<system.webServer>
<rewrite>
<rules>
<rule name="HostNameRule1">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny">
<!--当不是使用https协议访问的时候-->
<add input="{HTTPS}" pattern="^OFF$" />
<!--并且访问的host不是abc.com这种,例如www.abc.com-->
<add input="{HTTP_HOST}" pattern="^abc\.com" negate="true" />
</conditions>
<!--跳转到https-->
<action type="Redirect" url="https://abc.com:90/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>

注意,浏览器会自动把跳转规则缓存,如发现更改不生效请清除缓存后再试

posted @ 2022-04-07 11:38  奇迹之耀  阅读(67)  评论(0编辑  收藏  举报