Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Redirect
Hello Goncharov,
Monday, September 3, 2007, 9:48:01 PM, you wrote:
> Подскажите пожалуйста как на nginx сделать апачевское
> <VirtualHost *>
> ServerName www.domain.com
> ServerAlias domain.com
> Redirect / http://www.anotherdomain.com
> </VirtualHost>
> Просто проксировать его на апач а там уже делать редирект некрасиво.
> Заранее благодарю.
server {
listen IP:PORT;
server_name domain.com;
rewrite / http://www.anotherdomain.com/ last;
}
http://sysoev.ru/nginx/docs/http/ngx_http_rewrite_module.html#rewrite
--
Best regards,
Denis mailto:denis@xxxxxxxxxx
|