在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/PHP  HTML/ 無法判斷是否 https 請求

無法判斷是否 https 請求

http 網(wǎng)站升級 https 
在 https 狀態(tài)下打印 $_SERVER
  ["REQUEST_SCHEME"] => string(4) "http"
  ["SERVER_PROTOCOL"] => string(8) "HTTP/1.0"

等信息全是http,這是什么原因??

 

clipboard.png

先謝謝大家回答,我的 $_server 全部都沒有標識https;附上我的nginx 配置

server {
        listen       80;
        root /www;
        server_name xx.com;
        rewrite ^(.*)$  https://$host$1 permanent;
        index  index.html index.php index.htm;
        location ~ \.php$ {
                proxy_pass http://127.0.0.1:88;
                include naproxy.conf;
        }
        location ~ /\.ht {
                deny  all;
        }
        location / {
                try_files $uri @apache;
        }
        location @apache {
                 internal;
                 proxy_pass http://127.0.0.1:88;
                 include naproxy.conf;
        }
}

server {
        listen       443;
        root /www;
        ssl                  on;
        ssl_certificate      cert/xx.com.crt;
        ssl_certificate_key  cert/xx.com.key;
        ssl_prefer_server_ciphers on;
        ssl_session_timeout 10m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        server_name xx.com;
        index  index.html index.php index.htm;
        location ~ \.php$ {
                proxy_pass http://127.0.0.1:88;
                include naproxy.conf;
        }
        location ~ /\.ht {
                deny  all;
        }
        location / {
                try_files $uri @apache;
        }
        location @apache {
                 internal;
                 proxy_pass http://127.0.0.1:88;
                 include naproxy.conf;
        }
}

回答
編輯回答
情已空

$_SERVER ['HTTP_X_FORWARDED_PROTO']

2018年3月23日 03:56
編輯回答
墨小白

$_SERVER['HTTPS']

$_SERVER['SERVER_PORT'] == 443

2017年12月5日 08:48
編輯回答
乖乖噠

isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == "on")
找找這2個有嗎,我用這2個判斷的,ok的

2017年10月3日 15:40
編輯回答
壞脾滊

nginx fastcgi參數(shù)設(shè)置了嗎

2017年7月22日 08:17
編輯回答
巷尾

你訪問的這個地址,到達的第一個 WEB 服務(wù)器(處理了你這個 HTTPS 的請求的那個),與你在頁面中看到的那個 php 服務(wù)器,又不一定是同一個東西。

2017年7月4日 13:39
編輯回答
柒喵

后臺有代理轉(zhuǎn)發(fā)么?
如果有轉(zhuǎn)發(fā),一般內(nèi)網(wǎng)轉(zhuǎn)發(fā),會用 http


注意 nginx 中的配置:

clipboard.png

有內(nèi)部轉(zhuǎn)發(fā)

2017年1月25日 03:12