帮助中心

如果没有找到你需要的问题,随时联系我们

帮助中心

设置http自动跳转https的方法2023/4/5 18:12:33
 

使用IIS自带的URLrewrite功能,在需要设置强制跳转的网站根目录下,新建一个文件命名为web.config,使用记事本打开编辑。

添加如下代码后保存:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
   <rewrite>
     <rules>
       <rule name="HTTP to HTTPS redirect" stopProcessing="true">
         <match url="(.*)" />
         <conditions>
           <add input="{HTTPS}" pattern="off" ignoreCase="true" />
         </conditions>
         <action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
       </rule>
     </rules>
   </rewrite>
 </system.webServer>
</configuration>





 
             

公告

联系方式

全国热线:

18600660491(微信同号)

客服QQ: