时间:2022-12-06 01:25
网站整站301跳转到https的方法:
在网站根目录修改web.config的配置文件,例如:
<?xmlversion="1.0"encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rulename="301"stopProcessing="true">
<matchurl="(.*)"/>
<conditionslogicalGrouping="MatchAny">
<addinput="{HTTP_HOST}"pattern="^abc\.cn$"/>
</conditions>
<actiontype="Redirect"url="https://www.abc.cn/{R:0}"/>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>