四虎影视在线影院在线观看,小s货再浪些再咬紧点h,国产精品水嫩水嫩,97精产国品一二三产区

無(wú)標(biāo)題文檔
wdCP系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊(cè))
wdOS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊(cè))
注冊(cè) 發(fā)貼 提問 回復(fù)-必看必看 wddns免費(fèi)智能 DNS 開通 本地或虛擬機(jī)使 用wdcp 一鍵包在mysql編 譯時(shí)"卡住"
AI導(dǎo)航網(wǎng)AI應(yīng)用網(wǎng)站大全 wdcp官方技術(shù)支持/服務(wù) 阿里云8折優(yōu)惠券 無(wú)敵云 騰訊云優(yōu)惠中,現(xiàn)注冊(cè)更有260代金額券贈(zèng)送
返回列表 發(fā)帖
提問三步曲: 提問先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會(huì)讓你更快解決問題
1 提供詳細(xì),如系統(tǒng)版本,wdcp版本,軟件版本等及錯(cuò)誤的詳細(xì)信息,貼上論壇或截圖發(fā)論壇
2 做過哪些操作或改動(dòng)設(shè)置等

溫馨提示:信息不詳,很可能會(huì)沒人理你!論壇有教程說明的,也可能沒人理!因?yàn)?你懂的

[教程] WDCP實(shí)現(xiàn)http跳轉(zhuǎn)https教程方法

本帖最后由 Miker 于 2016-12-15 15:37 編輯

APache 版本

如果需要整站跳轉(zhuǎn),則在網(wǎng)站的配置文件的<Directory>標(biāo)簽內(nèi),鍵入以下內(nèi)容:
  1. RewriteEngine on
  2. RewriteCond %{SERVER_PORT} !^443$
  3. RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
復(fù)制代碼
如果對(duì)某個(gè)目錄做https強(qiáng)制跳轉(zhuǎn),則復(fù)制以下代碼:
  1. RewriteEngine on
  2. RewriteBase /yourfolder
  3. RewriteCond %{SERVER_PORT} !^443$
  4. #RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
  5. RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
復(fù)制代碼
如果只需要對(duì)某個(gè)網(wǎng)頁(yè)進(jìn)行https跳轉(zhuǎn),可以使用redirect 301來做跳轉(zhuǎn)!redirect 301  /你的網(wǎng)頁(yè) https://你的主機(jī)+網(wǎng)頁(yè)

Nginx版本

在配置80端口的文件里面,寫入以下內(nèi)容即可。
  1. server {
  2.         listen       80;
  3.         server_name  localhost;
  4.        rewrite ^(.*)$ https://$host$1 permanent;   

  5.         location / {
  6.             root   html;
  7.             index  index.html index.htm;
  8.         }
復(fù)制代碼
TOMCAT 版本

1、在conf目錄下的server.xml文件中找到以下配置,修改redirectPort參數(shù)值為"443",默認(rèn)是“8443”.
  1. <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" />
復(fù)制代碼
復(fù)制代碼
2、在conf目錄下的web.xml文件內(nèi)容<web-app>……</web-app>中增加以下配置。

復(fù)制代碼

單獨(dú)頁(yè)面通用代碼段:以下方法較適合指定某一個(gè)子頁(yè)單獨(dú)https
在需要強(qiáng)制為https的頁(yè)面上加入以下代碼進(jìn)行處理http-->https
  1. <script type="text/javascript">
  2.         var url = window.location.href;
  3.         if (url.indexOf("https") < 0) {
  4.         url = url.replace("http:", "https:");
  5.         window.location.replace(url);
  6.         }
  7. </script>
復(fù)制代碼
  1. <web-app>
  2. .........
  3. <security-constraint>
  4.     <web-resource-collection >        
  5.    <web-resource-name >SSL</web-resource-name>     
  6.    <url-pattern>/*</url-pattern>
  7.        </web-resource-collection>   
  8.        <user-data-constraint>
  9. <transport-guarantee>CONFIDENTIAL</transport-guarantee>
  10.        </user-data-constraint>
  11. </security-constraint>
  12. </web-app>
復(fù)制代碼
在需要強(qiáng)制為http的頁(yè)面上加入以下代碼進(jìn)行處理
https-->http
  1. <script language="JavaScript" type="text/JavaScript">
  2. function redirect()
  3. {  
  4.   var loc = location.href.split(':');
  5.   if(loc[0]=='https')
  6.         {  
  7.         location.href='http:'+loc[1];  
  8.         }
  9. }                     
  10. onload=redirect  
  11. </script>
復(fù)制代碼
PHP頁(yè)面跳轉(zhuǎn):添加在網(wǎng)站php頁(yè)面內(nèi)
  1. if ($_SERVER["HTTPS"] <> "on")
  2. {
  3. $xredir="https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
  4. header("Location: ".$xredir);
  5. }
復(fù)制代碼
http跳轉(zhuǎn)https的方法較多,以上僅供參考。
這個(gè)人很勤快~暫時(shí)沒有個(gè)性簽名

不需要裝ssl證書?只需要插入這段代碼就可以了?
123123

TOP

回復(fù) 2# youqingxiaozhu

需要安裝證書的親
這個(gè)人很勤快~暫時(shí)沒有個(gè)性簽名

TOP

有其他解決方案么? 為什么通過rewrite會(huì)出現(xiàn) 死循環(huán)?

TOP

直接訪問https://www.52jbj.com/soft/

TOP

測(cè)有做過測(cè)試吧!
http://61mc.com

TOP

n+a是用88商品去處理php
像我的都是php
所以,就是直接
RewriteEngine on
RewriteCond %{SERVER_PORT} ^88$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
調(diào)用了88
http://61mc.com

TOP

3.2.21開啟強(qiáng)制啟用還是跳轉(zhuǎn)不了,怎么回事啊?

TOP

回復(fù) 1# Miker


   DZ 3.4 添加代碼后是這樣的,死循環(huán)?https://www.honghe365.com/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/public_html/
米粒

TOP

回復(fù) 9# xyz007wjm


    目前最新面板已經(jīng)支持自帶強(qiáng)制跳轉(zhuǎn)打開即可
這個(gè)人很勤快~暫時(shí)沒有個(gè)性簽名

TOP

回復(fù) 8# 宋大光


    刪除緩存開啟https即可
這個(gè)人很勤快~暫時(shí)沒有個(gè)性簽名

TOP

返回列表