nginx 配置http重定向到https
Posted 风间影月の技术小站
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 配置http重定向到https相关的知识,希望对你有一定的参考价值。
在80端口的那个server下,添加如下:
server_name www.youwebsite.com youwebsite.com; rewrite ^(.*)$ https://$host$1 permanent;
然后访问 www.网站.com 网站.com
会自动跳转到https下
以上是关于nginx 配置http重定向到https的主要内容,如果未能解决你的问题,请参考以下文章