在location中 如果uri没有命中规则会继续到其他的location / 或者location中有与该uri不匹配这回到其他location /match 去执行
For example:
location /test {
try_files $uri $uri/ /image/default.gif;
}
location / {
# location test try_fiels 失败会跳到这里(没有location /images)
}
location /images {
# location test try_fiels 失败会跳到这里
}
网友评论