xiaozi 2014-11-21 22:12:00
nginx 中,应该使用`try_files`来判断文件是否存在,而不是`if`
plain
location / {
try_files index.html index.php =404;
}


