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的主要内容,如果未能解决你的问题,请参考以下文章

nginx 代理https到http重定向失败的问题

nginx的多域httphttps同时访问配置及http重定向https

如何在 NGINX 上将 HTTPS 重定向到 HTTP?

ELB Nginx 将 http 重定向到 https

nginx中实现把所有http的请求都重定向到https

Nginx:将非www重定向到www https