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

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

溫馨提示:信息不詳,很可能會沒人理你!論壇有教程說明的,也可能沒人理!因為,你懂的

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

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

APache 版本

如果需要整站跳轉(zhuǎn),則在網(wǎng)站的配置文件的<Directory>標簽內(nèi),鍵入以下內(nèi)容:
  1. RewriteEngine on
  2. RewriteCond %{SERVER_PORT} !^443$
  3. RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
復(fù)制代碼
如果對某個目錄做https強制跳轉(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ù)制代碼
如果只需要對某個網(wǎng)頁進行https跳轉(zhuǎn),可以使用redirect 301來做跳轉(zhuǎn)!redirect 301  /你的網(wǎng)頁 https://你的主機+網(wǎng)頁

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",默認是“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ù)制代碼

單獨頁面通用代碼段:以下方法較適合指定某一個子頁單獨https
在需要強制為https的頁面上加入以下代碼進行處理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ù)制代碼
在需要強制為http的頁面上加入以下代碼進行處理
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頁面跳轉(zhuǎn):添加在網(wǎng)站php頁面內(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的方法較多,以上僅供參考。
這個人很勤快~暫時沒有個性簽名

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

TOP

回復(fù) 2# youqingxiaozhu

需要安裝證書的親
這個人很勤快~暫時沒有個性簽名

TOP

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

TOP

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

TOP

測有做過測試吧!
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開啟強制啟用還是跳轉(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)支持自帶強制跳轉(zhuǎn)打開即可
這個人很勤快~暫時沒有個性簽名

TOP

回復(fù) 8# 宋大光


    刪除緩存開啟https即可
這個人很勤快~暫時沒有個性簽名

TOP

返回列表