网站如何整站301跳转到https

1022
2021/1/6 8:12:37
栏目: 云计算
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

网站如何整站301跳转到https

网站整站301跳转到https的方法:

在网站根目录修改web.config的配置文件,例如:

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <system.webServer>

        <rewrite>

            <rules>

                <rule name="301" stopProcessing="true">

                    <match url="(.*)" />

                    <conditions logicalGrouping="MatchAny">

                        <add input="{HTTP_HOST}" pattern="^abc\.cn$" />

                    </conditions>

                    <action type="Redirect" url="https://www.abc.cn/{R:0}" />

                </rule>

            </rules>

        </rewrite>

    </system.webServer>

</configuration>

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: 为什么要做301跳转