rewrite.高手帮帮忙!!!

rewrite.高手帮帮忙!!!

rewrite写了好几天,也没弄好,帮帮我吧,谢谢了!完整的是这样http://cy.abc.cn/index.php/list/2,想写成这样:http://cy.abc.cn/list/2.                                    
nginx配置文件里是这样写的:
location / {

        if (!-e $request_filename) {

           rewrite ^/(.*)$ index.php/$1 last;

        }

   }但只能访问首页,不能访问其它页!!!
http://cy.abc.cn/index.phplist/2和http://cy.abc.cn/list/2访问都是404,哪里的问题?
是不是因为有.php就给扔到fastcgi处理了?