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

Board logo

標題: [教程] WDCP實現(xiàn)http跳轉(zhuǎn)https教程方法 [打印本頁]

作者: Miker    時間: 2016-3-24 09:20     標題: 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]
復制代碼
如果對某個目錄做https強制跳轉(zhuǎn),則復制以下代碼:
  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]
復制代碼
如果只需要對某個網(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.         }
復制代碼
TOMCAT 版本

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

復制代碼

單獨頁面通用代碼段:以下方法較適合指定某一個子頁單獨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>
復制代碼
  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>
復制代碼
在需要強制為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>
復制代碼
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. }
復制代碼
http跳轉(zhuǎn)https的方法較多,以上僅供參考。
作者: youqingxiaozhu    時間: 2016-3-24 09:42

不需要裝ssl證書?只需要插入這段代碼就可以了?
作者: Miker    時間: 2016-3-28 11:43

回復 2# youqingxiaozhu

需要安裝證書的親
作者: cdd311    時間: 2016-12-14 17:52

有其他解決方案么? 為什么通過rewrite會出現(xiàn) 死循環(huán)?
作者: 52jbj    時間: 2017-1-15 16:22

直接訪問https://www.52jbj.com/soft/
作者: else    時間: 2017-3-13 11:35

測有做過測試吧!
作者: else    時間: 2017-3-13 11:37

n+a是用88商品去處理php
像我的都是php
所以,就是直接
RewriteEngine on
RewriteCond %{SERVER_PORT} ^88$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
調(diào)用了88
作者: 宋大光    時間: 2018-11-29 11:31

3.2.21開啟強制啟用還是跳轉(zhuǎn)不了,怎么回事啊?
作者: xyz007wjm    時間: 2018-11-30 07:58

回復 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/
作者: Miker    時間: 2018-11-30 16:54

回復 9# xyz007wjm


    目前最新面板已經(jīng)支持自帶強制跳轉(zhuǎn)打開即可
作者: Miker    時間: 2018-11-30 16:54

回復 8# 宋大光


    刪除緩存開啟https即可




歡迎光臨 WDlinux官方論壇 (http://www.fsowen.com/bbs/) Powered by Discuz! 7.2