nginx 配置http重定向到https

在80端口的那个server下,添加如下:

server_name  www.youwebsite.com youwebsite.com;

rewrite ^(.*)$ https://$host$1 permanent;

 

然后访问 www.网站.com  网站.com

会自动跳转到https下

 

posted @ 2017-07-27 23:37  风间影月  阅读(1292)  评论(0编辑  收藏  举报