nginx try_files 判断文件存在

转:http://blog.phpdr.net/nginx-try-files.html

现在有这样一个需求,网站根目录下有静态文件,static目录下也有静态文件,static目录下的静态文件是程序批量生成的,我想让nginx在地址不变的前提下优先使用static目录里面的文件,如果不存在再使用根目录下的静态文件,比如访问首页http://example.com/index.html则nginx返回/static/index.html,如果不存在返回/index.html。

经过一番研究可以用if指令实现,关键配置如下,这条配置需要放到靠前的位置

if (-e $document_root/static$request_uri) {
	rewrite ^/(.*)$ /static/$1 break;
	break;
}

这里有两点需要注意:

  1. nginx变量默认应该开头有反斜线而结尾没有。
  2. nginx字符串和变量可以直接连接,如果可能有歧义可以花括号括起变量名称,整个字符串必须加双引号
"${document_root}/static${request_uri}"

是用这种方式有一个缺点,index指令指定的文件不会起作用,比如访问http://example.com/就会404,必须显示的指定文件名才行http://example.com/index.html。可以用rewrite修复,但是感觉不爽,在nginx陷阱页面突然发现一个针对性的指令try_files

set $static "/static";
try_files $static$uri $static$uri/index.html /index.php;

参考页面
http://wiki.nginx.org/Pitfalls

后来发现$uri变量本身会自动添加index.html后缀,经过实验这样写也是可以的

if (-e "${document_root}/static${uri}") {
 rewrite ^/(.*)$ /static/$uri break;
}

if (-e $request_filename) {
 break;
}

因为最后不存在的文件都写到index.php去了所以上面rewrite之后需要再判断一次文件存在。

以下我的配置:

server{

        location / {

                allow all;
                root /var/www/html;
                index  index.html index.php index.htm;
                rewrite ^/static/$ /index.html last;                                                                                       
        }

        if (-e $document_root/static$uri) {                                                                                                
                rewrite ^/(.*)$ /static/$1 break;
                break;
        }

}

    A+
发布日期:2014年07月31日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: