这样的rewrite怎么写啊?

这样的rewrite怎么写啊?

请问NGINX里,允许有这样的链接吗?http://cy.abc.cn/index.php/article/1697,我想把index.php去掉,改成http://cy.abc.cn/article/1697,这种好像不可以!
rewrite是这样写的   
location / {

        if (!-e $request_filename) {

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

        }

   }
只可以访问到首页,点击其它链接结果访问了是404,nginx最开始的http://cy.abc.cn/index.php/article/1697就没有访问成功,所以说REWRITE写对了,也无济于事,请大家帮帮忙,到底是哪的问题?
nginx有想apache那样有特定的rewrite日志输出么?