Gateway未来科技

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 179|回复: 0

主机大师设置http自动跳转https的方法

[复制链接]

219

主题

229

帖子

884

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
884
发表于 2022-4-17 11:24:27 | 显示全部楼层 |阅读模式
使用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>
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Comsenz Inc.

GMT+8, 2024-12-23 12:46 , Processed in 0.065306 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc. Templated By 【未来科技 www.veikei.com】设计

快速回复 返回顶部 返回列表