1. 程式人生 > >使用nginx實現http訪問自動跳轉到https埠

使用nginx實現http訪問自動跳轉到https埠

作業系統:windows 2008

nginx版本:1.9.6

修改nginx的配置檔案:nginx.conf

在http{}中,新建一個server,如下的格式

    server {
        listen       80;
        listen       www.xxx.com:80;   此處新增你要該連結訪問的域名
        server_name  www.xxx.com  alias  xxx.com.alias;
rewrite ^(.*) https://$server_name$1 permanent;            此句最關鍵
    }

如果有其他監聽80的server,改為其他埠就行了