Answers for "nginx always redirect to http site"

0

nginx redirect to non www

server {
    server_name www.example.com;
    return 301 $scheme://example.com$request_uri;
}
Posted by: Guest on June-08-2020

Code answers related to "nginx always redirect to http site"

Browse Popular Code Answers by Language