Answer the question
In order to leave comments, you need to log in
Why does the www redirect not work?
There is such a nginx server configuration
server {
server_name www.cool-fin.ru;
rewrite ^(.*) http://cool-fin.ru$1 permanent;
}
server {
listen 80;
server_name cool-fin.ru;
...
Answer the question
In order to leave comments, you need to log in
server {
listen 80;
server_name www.cool-fin.ru;
return 302 http://cool-fin.ru$request_uri;
}
nginx -t
nginx -s reload
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question