Simple rewrite but

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…

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

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