午夜视频在线在免费-日本免费一区二区-少妇性bbb搡bbb爽爽爽四川-中文字幕精品一区二区-全婐体艺术照147147-国产亚洲人成网站在线观看-色婷婷com-黄色免费在线观看-香蕉国产在线视频-欧美成年网站-国产精品不卡免费视频,欧美人欧美人与动人物性行为,成年大片免费视频,99精品国产高清一区二区

使用程序強制跳轉到HTTPS

兼容:

<!-- 如果檢測到是http頁面,則自動跳轉到對應的https頁面 -->
<script type="text/javascript">
if (document.location.protocol != "https:") { 
        location.href = location.href.replace(/^http:/,"https:");
}
</script>



ASP:

<%
If Request.ServerVariables("SERVER_PORT")=80 Then
Dim strSecureURL
strSecureURL = "https://"
strSecureURL = strSecureURL & Request.ServerVariables("SERVER_NAME")
strSecureURL = strSecureURL & Request.ServerVariables("URL")
Response.Redirect strSecureURL
End If
%>

 

PHP:

if(!isset($_SERVER['HTTPS'])||!$_SERVER['HTTPS']){
$url ='https://'. $_SERVER['HTTP_HOST']. $_SERVER['REQUEST_URI'];
header('Location: '. $url);exit;
}