永久黄网站色视频免费直播,yy6080三理论日本中文,亚洲无码免费在线观看视频,欧美日韩精品一区二区在线播放
標題:
[教程]
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)容:
RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
復制代碼
如果對某個目錄做https強制跳轉(zhuǎn),則復制以下代碼:
RewriteEngine on
RewriteBase /yourfolder
RewriteCond %{SERVER_PORT} !^443$
#RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
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)容即可。
server {
listen 80;
server_name localhost;
rewrite ^(.*)$ https://$host$1 permanent;
location / {
root html;
index index.html index.htm;
}
復制代碼
TOMCAT 版本
1、在conf目錄下的server.xml文件中找到以下配置,修改redirectPort參數(shù)值為"443",默認是“8443”.
<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
<script type="text/javascript">
var url = window.location.href;
if (url.indexOf("https") < 0) {
url = url.replace("http:", "https:");
window.location.replace(url);
}
</script>
復制代碼
<web-app>
.........
<security-constraint>
<web-resource-collection >
<web-resource-name >SSL</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
</web-app>
復制代碼
在需要強制為http的頁面上加入以下代碼進行處理
https-->http
<script language="JavaScript" type="text/JavaScript">
function redirect()
{
var loc = location.href.split(':');
if(loc[0]=='https')
{
location.href='http:'+loc[1];
}
}
onload=redirect
</script>
復制代碼
PHP頁面跳轉(zhuǎn):添加在網(wǎng)站php頁面內(nèi)
if ($_SERVER["HTTPS"] <> "on")
{
$xredir="https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
header("Location: ".$xredir);
}
復制代碼
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