One minute
Nginx强制http跳转https
server {
listen 80;
server_name www.yourdomain.com yourdomain.com; // 修改成你的域名
rewrite ^(.*)$ https://$host$1 permanent;
}
One minute
server {
listen 80;
server_name www.yourdomain.com yourdomain.com; // 修改成你的域名
rewrite ^(.*)$ https://$host$1 permanent;
}