6

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

RewriteEngine On

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

它背后的想法是将每个请求定向到前端控制器(index.php)。我正在尝试对 Nginx 做同样的事情。我使用了一个在线转换器来制作这个 Nginx 位置块:

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

但是当我将它添加到我的站点配置中时,Nginx 只是吐出 PHP 文件的源代码作为下载。作为参考,这是整个配置文件:

http://pastebin.com/tyKtM1iB

我知道 PHP 可以正常工作,就好像我删除了 location 块并使用<?php phpinfo();它制作的文件正常工作一样。

任何帮助,将不胜感激。

4

2 回答 2

13

这就是我将所有内容路由到 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://foo.bar/assets/someimg.jpg
于 2013-03-01T20:51:35.500 回答
1

跳过正则表达式的结尾:

location / {
        index index.html index.php;
        if (!-e $request_filename) {
            rewrite ^.* /index.php break;
            fastcgi_pass 127.0.0.1:9001;
        }
}
于 2013-03-01T20:38:54.183 回答