https://www.jianshu.com/p/35fb060ee939
方法1
if ( $scheme = http ) {
return 301 https://$host$request_uri;
}
方法2
if ( $server_port = 80 ) {
return 301 https://$host$request_uri;
}
方法3
server {
listen 80;
server_name www.abc.com;
return 301 https://$server_name$request_uri;
}
方法4
if ( $host = "www.abc.com" ) {
rewrite ^/(.*)$ https://www.abc.com permanent;
}