2020-06-21 22:16:10 web.config IIS 伪静态http 301 https规则代码
<rule name="301Redirect" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTP_HOST}" pattern="^html8.com.cn$" />
</conditions>
<action type="Redirect" url="https://www.html8.com.cn/{R:0}" redirectType="Permanent" />
</rule>