永久黄网站色视频免费直播,yy6080三理论日本中文,亚洲无码免费在线观看视频,欧美日韩精品一区二区在线播放

無(wú)標(biāo)題文檔
wdCP系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用手冊(cè))
wdOS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說(shuō)明,演示,常見(jiàn)問(wèn)題,使用手冊(cè))
注冊(cè) 發(fā)貼 提問(wèn) 回復(fù)-必看必看 wddns免費(fèi)智能 DNS 開(kāi)通 本地或虛擬機(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ā)帖
提問(wèn)三步曲: 提問(wèn)先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會(huì)讓你更快解決問(wèn)題
1 提供詳細(xì),如系統(tǒng)版本,wdcp版本,軟件版本等及錯(cuò)誤的詳細(xì)信息,貼上論壇或截圖發(fā)論壇
2 做過(guò)哪些操作或改動(dòng)設(shè)置等

溫馨提示:信息不詳,很可能會(huì)沒(méi)人理你!論壇有教程說(shuō)明的,也可能沒(méi)人理!因?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來(lái)做跳轉(zhuǎn)!redirect 301  /你的網(wǎng)頁(yè) https://你的主機(jī)+網(wǎng)頁(yè)

Nginx版本

在配置80端口的文件里面,寫(xiě)入以下內(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í)沒(méi)有個(gè)性簽名

回復(fù) 2# youqingxiaozhu

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

TOP

回復(fù) 9# xyz007wjm


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

TOP

回復(fù) 8# 宋大光


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

TOP

返回列表