Skip to content

Редирект на другой домен с помощью NGINX

В /etc/nginx/sites-available/default.conf или /etc/nginx/nginx.conf делаем следующее

server {
listen 80;
server_name site.org
rewrite ^ $scheme://newsite.org$request_uri? permanent; #301-redirect
}

site.org – старый домен newsite.org – новый домен

Published inLinux

Be First to Comment

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *