nginx 中的 rewrite 和 try_files

Posted xihuangwutong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 中的 rewrite 和 try_files相关的知识,希望对你有一定的参考价值。

今天翻看YII文档的时候发现推荐的nginx配置参数是:

location /

# Redirect everything that isn't a real file to index.php

try_files $uri $uri/ /index.php$is_args$args;

location ~ \\.php$

include fastcgi_params;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

fastcgi_pass 127.0.0.1:9000;

#fastcgi_pass unix:/var/run/php5-fpm.sock;

try_files $uri =404;


我本地使用原来的参数的配置还是:rewrite ^/(.*)$ /index.php/$1 last;


rewrite是类似Apache的配置

这里的配置也比较的容易理解,但是为啥官方的推荐要推荐try_files呢


最后我找到了一个答案:Nginx一般都是配合fpm来使用的,

如果使用rewrite的时候会把所有的文件都重定向然后发送给php-fpm包括了静态文件,所以现在已经不推荐这样的配置了


参考:http://blog.wuxu92.com/nginx-rewrite-and-try-files/

以上是关于nginx 中的 rewrite 和 try_files的主要内容,如果未能解决你的问题,请参考以下文章

nginx 中的 rewrite 和 try_files

nginx 中的 rewrite 和 try_files

Nginx的Rewrite跳转!

Nginx的Rewrite跳转!

Nginx中的rewrite指令(break,last,redirect,permanent)

转:NGINX中的proxy_pass和rewrite