nginx 配置选项 try_files 详解
try_files是nginx中http_core核心模块所带的指令,主要是能替代一些 rewrite 的指令,提高解析效率。官网的文档为http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files
try_files的语法规则
格式1:try_files file ... uri;
格式2:try_files file ... =code;
可应用的上下文:server,location段
关键点1:按指定的file顺序查找存在的文件,并使用第一个找到的文件进行请求处理
关键点2:查找路径是按照给定的root或alias为根路径来查找的
关键点3:如果给出的file都没有匹配到,则重新请求最后一个参数给定的uri,就是新的location匹配
关键点4:如果是格式2,如果最后一个参数是 = 404 ,若给出的file都没有匹配到,则最后返回404的响应码
举例说明:
location /images/ { root /opt/html/; try_files $uri $uri/ /images/default.gif; }
比如 请求 127.0.0.1/images/test.gif 会依次查找
文件/opt/html/images/test.gif
文件夹 /opt/html/images/test.gif/下的index文件
请求127.0.0.1/images/default.gif
其他注意事项
try-files 如果不写上 $uri/,当直接访问一个目录路径时,并不会去匹配目录下的索引页
即 访问127.0.0.1/images/ 不会去访问 127.0.0.1/images/index.html
其他用法:
location / { try_files /system/maintenance.html $uri $uri/index.html $uri.html @mongrel; } location @mongrel { proxy_pass http://mongrel; }
以上中若未找到给定顺序的文件,则将会交给location @mongrel处理(相当于匹配到了@mongrel来匹配)
摘自:https://www.cnblogs.com/jedi1995/p/10900224.html
共 0 条评论