2 messages in ru.sysoev.nginxRe: simple rewrite but...
FromSent OnAttachments
Drazen MilosevicJun 26, 2008 3:55 am 
Igor ClarkJun 26, 2008 4:12 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: simple rewrite but...Actions...
From:Igor Clark (igor@public.gmane.org)
Date:Jun 26, 2008 4:12:54 am
List:ru.sysoev.nginx

Hello, looks like you need to capture something into $1 before you can use it:

rewrite ^(.*)$ /reservation.php$1 last;

On 26 Jun 2008, at 11:56, Drazen Milosevic wrote:

i can't get it working.

this is the rule for Apache wich works RewriteRule ^reservation.html$ /reservation.php

In nginx I tried like this rewrite ^.*$ /reservation.php$1 last; and rewrite ^reservation.html$ /reservation.php$1 last; and rewrite ^/reservation.html$ http://www.domain.com/reservation.php$1 permanent;

with hundred variations but to no avail.

I just can't get it working under nginx. It was actually little embarassing sending this to mailing list but....