nginx http强制跳转https
Posted WinJohn的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx http强制跳转https相关的知识,希望对你有一定的参考价值。
通过nginx的rewrite 进行301永久重定向,参考如下配置即可。
server {
listen 192.168.1.111:80;
server_name test.com;
rewrite ^(.*)$ https://$host$1 permanent;
}
搭建此虚拟主机完成后,就可以将http://test.com的请求全部重写到https://test.com上了
以上是关于nginx http强制跳转https的主要内容,如果未能解决你的问题,请参考以下文章