Nicolase 2020-01-02
//其他框架请加到入口某共公加载的文件中
//方法一 https状态
if(!isset($_SERVER[‘HTTPS‘]) || $_SERVER[‘HTTPS‘] == ‘off‘){
Header("HTTP/1.1 301 Moved Permanently");
header(‘Location: https://‘.$_SERVER[‘HTTP_HOST‘].$_SERVER[‘REQUEST_URI‘]);
}
//方法二 判断端口
if($_SERVER[‘SERVER_PORT‘]=="80"){
Header("HTTP/1.1 301 Moved Permanently");
header(‘Location: https://‘.$_SERVER[‘HTTP_HOST‘].$_SERVER[‘REQUEST_URI‘]);
} server { listen 80; server_name ××××.com; access_log /×××/×××/nginx/log/access.log; error_log /×××/×
if (!$file = fopen($filename, "rb");Header( "Content-type: application/octet-stream ");Header( "Acce