把不带www的子域名重定向到带www的主域名上

 

server {
        listen       80;
        server_name  a.com;
        location / {
                rewrite ^(.*) http://www.a.com$1 permanent;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }