技术解析
现有如下配置(省略其它)
location ~* /user/view/\d+/$ {
alias /path/to/dist/view/;
index user_view.html;
default_type "text/html";
}
location / {
root /path/to/dist/;
index index.html index.htm;
default_type "text/html";
try_files $uri.html $uri $uri/ =404;
}
预期是访问 localhost/user/view/123/ 时,应当返回我设置的 index 页面,即 /path/to/dist/view/目录下的 user_view.html。
但结果是 404。
打开 nginx debug 日志。摘要如下
(前略)
[debug] 4000#2380: *1 test location: "/"
[debug] 4000#2380: *1 test location: ~ "/user/view/\d+/$"
[debug] 4000#2380: *1 using configuration "/user/view/\d+/$"
(中略)
[debug] 4000#国外服务器2380: *1 http script copy: "/path/to/dist/view/"
[debug] 4000#2380: *1 open index "/path/to/dist/view/user_view.html"
[debug] 4000#2380: *1 internal redirect: "/user/view/123/user_view.html?"
[debug] 4000#2380: *1 rewrite phase: 1
[debug] 4000#2380: *1 test location: "/"
[debug] 4000#2380: *1 test location: ~ "/user/view/\d+/$"
[debug] 4000#2380: *1 using configuration "/
(后略)
可以看到,先匹配到了正确的正则路径,而且 open index 也找到了我设置的默认页面,之后突然一个 internal redirect 重定向,最后匹配到不相关的 / 。
实在搞不懂为什么……