5

我正在尝试将 Nginx 配置为将所有 404 发送到 php 文件以进行进一步处理。我还没有让它工作。使用 try_files 我得到一个默认的 404 而没有 try_files 我没有指定输入文件。这是我到目前为止所拥有的:

server {
    listen 192.168.100.44:80;

    location / {
        index  index.html;
    }
    root /var/www/test.example.com;

    error_page  404              /404.php;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        #try_files      $uri = 404;
        fastcgi_pass   unix:/tmp/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}
4

1 回答 1

8

答案是添加以下行: fastcgi_intercept_errors on;

然后,为了处理 404 并可能从 PHP 脚本返回不同的状态码: error_page 404 /404.php; 不得不简单地改为: error_page 404 = /404.php;

感谢 Nginx IRC 频道中的好心人,他们花了一些时间向我展示了正确的方向。

于 2012-11-01T08:22:02.750 回答