Nginx rewrite question

Hello
I want to konw nginx rewrite ,how to write rewrite /indxe.htm to
/dir/
ex: XXXX redirecting http://xxxx.com/

Posted at Nginx Forum:

On Tue, Mar 29, 2011 at 01:39:05AM -0400, jinjun502 wrote:

Hello
I want to konw nginx rewrite ,how to write rewrite /indxe.htm to
/dir/
ex: XXXX redirecting http://xxxx.com/

location = / {
try_files $uri/index.htm =404;
root /path/to/files;
}

location = /index.htm {
return 301 http://xxxx.com/;
}


Igor S.
http://sysoev.ru/en/

something like that:

location = /index.htm {
rewrite ^/.*$ http://$host? permanent;
}

Posted at Nginx Forum:

Oh thanks It’s work

Posted at Nginx Forum: