My domain name is example.com
I want www.example.com to jump to example.com
My nginx configuration is
server { listen 80; server_name www.example.com example.com; root /var/www/web; if ($http_host == "www.example.com") { rewrite ^ http://example.com$request_uri permanent; }
no. . .
认证高级PHP讲师