码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx precontent阶段 try_files指令

时间:2019-02-14 16:33:19      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:ash   second   路径   try   nta   xxx   ...   执行   content   

try_fiels指令

syntax : try_files file ... uri;=code  //可以是多个文件 

context : server,location;

 location /first {
                try_files /system/xxx.html $uri $uri/index.html @lasturl; #这里尝试找每个路径的文件 如果都找不到文件 则就执行@lashurl 就会返回 下面的location
        }
        location @lasturl{
                return 200 "lasturl \n";
        }
        location /second{ #如果找不到则返回404
                try_files /system/xxx.html $uri =404;
        }

 

Nginx precontent阶段 try_files指令

标签:ash   second   路径   try   nta   xxx   ...   执行   content   

原文地址:https://www.cnblogs.com/jackey2015/p/10375205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!