nginx 非80443端口跳转到80443
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 非80443端口跳转到80443相关的知识,希望对你有一定的参考价值。
其实很简单:
if ($server_port != ‘80‘ ) { rewrite ^/(.*)$ http://$host/$1 permanent; }
举一反三。。。
if ($server_port != ‘443‘ ) { rewrite ^/(.*)$ https://$host/$1 permanent; }
if ($host != ‘host‘ ) { rewrite ^/(.*)$ http://host/$1 permanent; }
以上是关于nginx 非80443端口跳转到80443的主要内容,如果未能解决你的问题,请参考以下文章