将nginx错误重定向到php

时间:2013-12-08 07:30:21

标签: php nginx

我的目标是将nginx中的任何错误(即404,405等...)重定向到位于index.php的PHP脚本。 `

server {

    root /usr/share/nginx/TradeLog/www/;
    index index.php index.html index.htm default.html default.htm;

    # Make site accessible from http://localhost/
    server_name localhost;
    server_name_in_redirect off;

    fastcgi_intercept_errors on;

    error_page 403 404 /index.php/;


    location / {
        try_files $uri $uri/ /index.php?$args;
    }

    location ~* \.php$
    {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            include fastcgi_params;
            fastcgi_read_timeout 600; # Set fairly high for debugging
            fastcgi_index index.php;
    }

    location ~* \.(jpg|jpeg|gif|css|png|js|ico|html)$ {
        expires max;
    }
}

`

然而,当我尝试这个时,我遇到了一个nginx 404错误。我在这里做错了什么?

修改

我发现如果我将fastcgi_intercept_errors on转为off,那么nginx会处理错误。我的下一步是设置一个新的php脚本请求,它将显示错误。这位于/errors/code/<code_number>

说我有以下位置块:

location = /composer.phar { return 403; }

我想重定向到/error/code/403

的错误页面

因此,我在想

error_page 403 = /error/code/403;

会为我做这个技巧,但是我的php脚本仍在接收原始请求 - 我总是显示404页面,因为我的PHP脚本正在获取一个它不知道的位置的请求。我希望nginx告诉它哪个页面在外部显示,然后只传递错误编号的脚本。

2 个答案:

答案 0 :(得分:5)

我认为你应该替换:

error_page 403 404 /index.php/;

使用:

error_page 403 404 /index.php;

额外/重定向到目录,而不是文件。其余配置似乎没问题。

答案 1 :(得分:0)

这很有效 error_page 404 = /index.php;