午夜亚洲国产,中文字幕福利视频,亚洲午夜久久久久中文字幕久,国产色图片,天天躁日日2018躁狠狠躁,99久久免费午夜国产精品,亚洲男人精品

101
安裝SSL證書后實現(xiàn)Http自動跳轉(zhuǎn)到Https教程

Apache版本

如果需要整站跳轉(zhuǎn),則在網(wǎng)站的配置文件的標(biāo)簽內(nèi),鍵入以下內(nèi)容:

RewriteEngine on
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]

如果對某個目錄做強制跳轉(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]

Nginx版本

在配置80端口的文件里面,寫入以下內(nèi)容即可。

server {
listen 80;
server_name localhost;
rewrite ^(.*)$ https://$host$1 permanent;
location / {
root html;
index index.html index.htm;
}

PHP頁面跳轉(zhuǎn):添加在網(wǎng)站php頁面內(nèi)

if ($_SERVER["HTTPS"] <> "on")
{
$xredir="https://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
header("Location: ".$xredir);
}

單獨頁面通用代碼段:較適合指定某一個子頁單獨https 在需要強制為https的頁面上加入以下代碼進(jìn)行處理http—>https

<script language="JavaScript" type="text/JavaScript">
function redirect()
{
var loc = location.href.split(':');
if(loc[0]=='http')
{
location.href='https:'+loc[1];
}
}
onload=redirect
</script>

這條幫助是否解決了您的問題? 已解決 未解決

提交成功!非常感謝您的反饋,我們會繼續(xù)努力做到更好! 很抱歉未能解決您的疑問。我們已收到您的反饋意見,同時會及時作出反饋處理!

https://s19.#/z_stat.php?id=1261961198&web_id=1261961198