nginx中try_files的的作用一般用户url的美化:
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
当用户请求 http://localhost/example.html?p=222 时,这里的 u r i 就 是 / e x a m p l e 。 t r y f i l e s 会 到 硬 盘 里 尝 试 找 这