91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

中國站
幫助中心 > 安全 > SSL安全證書 > 證書安裝 > 使用程序強制跳轉到HTTPS

使用程序強制跳轉到HTTPS

兼容

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

ASP

  1. <%
  2. If Request.ServerVariables("SERVER_PORT")=80 Then
  3. Dim strSecureURL
  4. strSecureURL = "https://"
  5. strSecureURL = strSecureURL & Request.ServerVariables("SERVER_NAME")
  6. strSecureURL = strSecureURL & Request.ServerVariables("URL")
  7. Response.Redirect strSecureURL
  8. End If
  9. %>

PHP

  1. if(!isset($_SERVER['HTTPS'])||!$_SERVER['HTTPS']){
  2. $url ='https://'. $_SERVER['HTTP_HOST']. $_SERVER['REQUEST_URI'];
  3. header('Location: '. $url);exit;
  4. }
景东| 固安县| 高唐县| 荔波县| 浑源县| 隆子县| 勐海县| 遂川县| 抚顺市| 伊宁市| 全南县| 南部县| 兴城市| 浦县| 涿鹿县| 惠州市| 罗源县| 边坝县| 海淀区| 辰溪县| 永清县| 滦南县| 通州市| 威海市| 泰宁县| 洪泽县| 望奎县| 本溪市| 合水县| 江口县| 上蔡县| 福州市| 姜堰市| 基隆市| 元阳县| 金门县| 葫芦岛市| 金华市| 富蕴县| 许昌县| 兴隆县|