Nginx环境强制http301跳转https的方法

Posted fubitech

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx环境强制http301跳转https的方法相关的知识,希望对你有一定的参考价值。

现时越来越多的人开始为站点启用ssl证书了,部署了ssl后咱们都需要让http胁制跳转https,并决定站点独一性,这里绍介了几种方式。

方式

提示:以军哥的lnmp一键部署包为例,nginx配置文件修正地址为/usr/fubitechal/nginx/conf/vhost/xx.com.conf
技术分享图片
方式一:

if ($scheme = http ) {
return 301 https://$host$request_uri;
}

方式二:

server_name moerats.com ;
rewrite ^(.*) https://moerats.com$1 permanent;

方式三:

if ($server_port = 80 ) {
return 301 https://$host$request_uri;
}

方式四:

server_name moerats.com ;
return 301 https://$server_name$request_uri;

最后输入/etc/init.d/nginx restartrebootNginx便可

希望以上的文章对各位有用,如果觉得不错给我点个喜欢吧!更多和Nginx环境强制http301跳转https的方法相关的问题或者对无限流量虚拟主机有疑惑也欢迎大家咨询。



以上是关于Nginx环境强制http301跳转https的方法的主要内容,如果未能解决你的问题,请参考以下文章

nginx 301跳转https后post请求失效问题解决

nginx http强制跳转https

使用 Nginx 实现 301 跳转至 https 的根域名

宝塔Linux nginx http强制跳转https几种设置方法

Nginx实现HTTP强制跳转HTTPS

nginx 301重定向几种写法