欢迎光临
我们一直在努力

IIS6 下设置http自动跳转到https

修改以下文件:C:\Windows\Help\iisHelp\common\403-4.htm 替换为以下代码内容:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>该页必须通过安全通道查看</title>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
</head>
<body>
<script type="text/javascript">
var url=window.location.href;
url=url.replace("http:","https:")
window.location.replace(url)
</script>
</body>
</html>

接着,打开IIS》》网站》》属性》》目录安全性》》编辑》》要求安全通道打勾》》确定。 重启IIS。

赞(0) 打赏
未经允许不得转载:优惠吧 » IIS6 下设置http自动跳转到https
分享到: 更多 (0)

评论 抢沙发

评论前必须登录!