网站如何整站301跳转到https
网站整站301跳转到https的方法:
在网站根目录修改web.config的配置文件,例如:
<?xmlversion="1.0"encoding="UTF⑻"?>
<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>
本文来源:https://www.yuntue.com/post/78298.html | 云服务器网,转载请注明出处!