http重定向到https使用了nginx的重定向命令。那么应该如何写重定向?之前老版本的nginx可能使用了以下两种类似的格式。
1 | rewrite ^/(.*)$ http://domain.com/$1 permanent; |
1 | rewrite ^ http://domain.com$request_uri? permanent; |
现在nginx新版本已经换了种写法,上面这些已经不再推荐。
下面是nginx http页面重定向到https页面最新支持的写法:
1 | server { |
http重定向到https使用了nginx的重定向命令。那么应该如何写重定向?之前老版本的nginx可能使用了以下两种类似的格式。
1 | rewrite ^/(.*)$ http://domain.com/$1 permanent; |
1 | rewrite ^ http://domain.com$request_uri? permanent; |
现在nginx新版本已经换了种写法,上面这些已经不再推荐。
下面是nginx http页面重定向到https页面最新支持的写法:
1 | server { |