Welcome! Log In Create A New Profile

Advanced

Re: error_page

Witold Filipczyk
October 20, 2010 01:08PM
On Wed, Oct 20, 2010 at 08:25:42PM +0400, Maxim Dounin wrote:
> Hello!
>
> On Wed, Oct 20, 2010 at 05:58:09PM +0200, witekfl@gazeta.pl wrote:
>
> > On Wed, Oct 20, 2010 at 07:21:19PM +0400, Igor Sysoev wrote:
> > > 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
> >
> > Yes, but I want:
> > http://blabla1.com/404.html to be 200 OK and serve http://blabla1.com/404.html
> > not /path/to/page/404.html
>
> Something like this:
>
> error_page 404 @notfound;
>
> location @notfound {
> rewrite ^ /404.html break;
> root /path/to/page;
> }
>
> should do the trick.

Yes, it works. Thanks!
Could you explain, why it works.
Why this rewrite is required?
Does it mean that for 404 by default /404.html is requested or not?


_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

error_page

witekfl Gazeta.pl 2138 October 20, 2010 11:12AM

Re: error_page

Igor Sysoev 934 October 20, 2010 11:22AM

Re: error_page

Anonymous User 879 October 20, 2010 12:00PM

Re: error_page

Maxim Dounin 854 October 20, 2010 12:26PM

Re: error_page

Witold Filipczyk 843 October 20, 2010 01:08PM

Re: error_page

Maxim Dounin 875 October 20, 2010 01:36PM

Re: error_page

Igor Sysoev 961 October 20, 2010 01:42PM

Re: error_page

Maxim Dounin 901 October 20, 2010 01:50PM

Re: error_page

Igor Sysoev 1007 October 20, 2010 01:58PM

Re: error_page

Igor Sysoev 963 October 20, 2010 01:06PM

Re: error_page

Witold Filipczyk 878 October 20, 2010 01:28PM

Re: error_page

Igor Sysoev 1007 October 20, 2010 01:38PM

Re: error_page

Witold Filipczyk 1230 October 20, 2010 01:58PM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 232
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready