redirect howto
Igor Sysoev
is at rambler-co.ru
Mon Mar 28 12:23:24 MSD 2005
On Mon, 28 Mar 2005, Denis Shaposhnikov wrote:
> Прошу меня извинить. Настраиваю nginx первый раз и возникают вопросы
> попутно.
>
> Как наиболее просто сделать permanent redirect для определенного
> location?
>
> Сейчас сделал
>
> location /webapp {
> rewrite ^/ https://billing2.vlink.ru/ permanent;
> }
>
> Так и надо?
В данном случае, видимо, так:
location /webapp {
rewrite ^/(.+)$ https://billing2.vlink.ru/$1 permanent;
}
Игорь Сысоев
http://sysoev.ru
More information about the nginx-ru
mailing list