<rewrite>
<rules>
<rule name="HostNameRule1">
<match url="(.*)" />
<!--匹配所有条件-->
<conditions logicalGrouping="MatchAny">
<!--当不是使用https协议访问的时候-->
<add input="{HTTPS}" pattern="^OFF$" />
<!--并且访问的host是xxxx.com这种,例如xxxx.com-->
<add input="{HTTP_HOST}" pattern="xxxx\.com$" negate="true" />
</conditions>
<!--跳转到https-->
<action type="Redirect" url="https://www.xxxx.com/{R:1}" />
</rule>
<rule name="HTTPS redirect">
<match url="(.*)" />
<conditions>
<!--当使用HTTPS协议访问-->
<add input="{HTTPS}" pattern="^ON$" />
<!--当访问 http://www.xxxx.com的时候 -->
<add input="{HTTP_HOST}" pattern="www.xxxx\.com$" negate="true" />
</conditions>
<!--跳转到HTTPS-->
<action type="Redirect" url="https://www.xxxx.com/{R:1}" redirectType="SeeOther" />
</rule>
</rules>
</rewrite>
共有条评论 网友评论