error_page
Igor Sysoev
igor at sysoev.ru
Wed Oct 20 19:21:19 MSD 2010
On Wed, Oct 20, 2010 at 05:10:59PM +0200, witekfl Gazeta.pl wrote:
> Hi,
> probably better place for these questions would be nginx-users, but I ask
> here.
> I want to serve static pages as error codes but without changing the error
> code.
>
> Now if:
> error_page 404 http://blablabla.com/404.html
> There is 302 and next 200 OK
> I want 404.
>
> error_page 404 /404.html
> it works, but:
> if there is:
> location = /404.html {
> internal;
> }
> then cannot be a normal location
> location = /404.html {
> },
> so request such as http://blabla1.com/404.html won't work.
>
> error_page 404 @404;
> location @404 {
> root /blabla;
> index 404.html;
> }
> doesn't work either
>
> There must be some way to achieve it.
> How?
I do not understand the problem. With this configuration
error_page 404 /404.html;
locaiton = /404.html {
internal;
root /path/to/page;
}
you will get 404 code with /404.html body for both requests:
http://blabla1.com/non-existant.html
http://blabla1.com/404.html
--
Igor Sysoev
http://sysoev.ru/en/
More information about the nginx-devel
mailing list