nginx 用上了 https , blog 是网站的子目录,可是在现在的配置下,我访问
http://example.com/blog 的时候,要跳转两次,先跳到
https://example.com/blog ,再跳到
https://example.com/blog/ ,再然后才返回 200 。
怎么写可以只跳转一次就好,直接从 80 跳到 443 ,并加上斜线?
以下是当前配置:
server {
listen 80 default_server;
listen [::]:80 default_server;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name
example.com;
root ...;
...
location /blog {
error_page 404 /blog/404.html;
try_files $uri $uri.html $uri/ =404;
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/297446
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.