Answer the question
In order to leave comments, you need to log in
How to redirect domain aliases through Nginx?
The domain has several aliases.
server_name site1.ru site2.ru site3.ru
I need to redirect site1.ru/page for example to google.com
And site2.ru/landing Redirect to yandex.ru
if ($http_host = 'site1.ru') {
rewrite ^(.*) https:/google.com permanent;
}
if ($http_host = 'site2.ru') {
rewrite ^(.*) https://yandex.ru permanent;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question