久久青草国产成人成人片_风流少妇按摩来高潮_亚洲欧美日韩成人高清在线一区_久久久久久伊人高潮影院_国产一区二区三区精华液_亚洲第一天堂无码专区_精品国产第一国产综合精品_欧美综合自拍亚洲综合图片区

使用程序強(qiáng)制跳轉(zhuǎn)到HTTPS

兼容:

<!-- 如果檢測(cè)到是http頁(yè)面,則自動(dòng)跳轉(zhuǎn)到對(duì)應(yīng)的https頁(yè)面 -->
<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;
}