Answers for "www and no-www nginx"

0

nginx redirect www to non-www

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

Browse Popular Code Answers by Language