Nginx重定向配置

所有非www二级域名都跳转到www.sojson.com下去。

#所有非www.sojson.com开始的域名,都重定向到www.sosjon.com下去。
if ($http_host !~ "^www.sojson.com$") {
	rewrite  ^(.*)    http://www.sojson.com$1 permanent;
}



一级域名跳转到www二级域名下面去。

#只是一级域名“sojson.com” 跳转到www.sojson.com去。
if ($http_host ~ "^sojson.com$") {
	rewrite  ^(.*)    http://www.sojson.com$1 permanent;
}

Nginx config配置位置参考:

server{
        listen          80;
        server_name    www.sojson.com admin.sojson.com sojson.com;
        index index.html;
        access_log      syslog:server=127.0.0.1,facility=local6,tag=nginxlog_access,severity=notice main;
        error_log       syslog:server=127.0.0.1,facility=local6,tag=nginxlog_error;
		
	#我在这里
        if ($http_host ~ "^sojson.com$") {
                rewrite  ^(.*)    http://www.sojson.com$1 permanent;
        }
		
        location ~* ^.+\.(ico|gif|jpg|jpeg|png)$ {
                access_log off;
                expires 7d;
        }
        location ~* \/(sitemap|robots)\.(html|txt|xml|xsl)$ {
                root /data/www/sojson.com/sitemap;
        }
        location / {
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

                if ($host ~* www\.sojson\.com) {
                        proxy_pass  http://www.sojson.com:8888;
                }
                if ($host ~* admin\.sojson\.com) {
                        proxy_pass  http://admin.sojson.com:8888;
                }

        }
}