使用nginx通过index.php路由请求

我将我的服务器从Apache迁移到Nginx,并有这个非常简单的.htaccess规则:

 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [QSA,L] 

它背后的想法是将每个请求都引导到前端控制器( index.php )。 我正在尝试与Nginx一样。 我使用了一个在线转换器来创build这个Nginx位置块:

 location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php break; } } 

但是当我把它添加到我的网站的configurationNginx只是吐出PHP文件的源代码作为下载。 作为参考,这里是整个configuration文件:

http://pastebin.com/tyKtM1iB

我知道PHP的作品,如果我删除位置块,并与<?php phpinfo(); 它工作正常。

任何帮助,将不胜感激。

这是我如何将所有的东西路由到index.php,包括子目录请求,HTTP参数等。

 location / { try_files $uri $uri/ /index.php?$args; #if doesn't exist, send it to index.php } location ~ \.php$ { include fastcgi_params; fastcgi_intercept_errors on; # By all means use a different server for the fcgi processes if you need to fastcgi_pass 127.0.0.1:9000; } 

所以例如,这些得到发送到index.php:

 http://foo.bar/something/ http://foo.bar/something/?something=1 

这些直接进入文件

 http://foo.bar/someotherphp.php http://img.zgserver.com/php/someimg.jpg 

跳过正则表达式的结尾:

 location / { index index.html index.php; if (!-e $request_filename) { rewrite ^.* /index.php break; fastcgi_pass 127.0.0.1:9001; } }