kunhai 发表于 2020-12-13 22:51:23

Windows系统asp设置全站ssl出错

<system.webServer><rewrite><rules>

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

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

        <conditions>

                <add ignoreCase="true" input="{HTTPS}" pattern="off"/>

        </conditions>

        <action redirectType="Permanent" type="Redirect" url="https://{HTTP_HOST}/{R:1}"/>

</rule>

</system.webServer></rewrite></rules>



我是按照教程来的,怎么不行哦,求高手指导

页: [1]
查看完整版本: Windows系统asp设置全站ssl出错