如何配置所有子域名重定向到www上,这里分别介绍了apache与nginx中的配置方法。
1、Apache 配置
#.htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.yourdomain.com
RewriteRule (.*) http://www.yourdomain.com$1 [R=301,L]
2、Nginx 配置
# /etc/nginx/nginx.conf
if ($http_host !~ “^www.yourdomain.com$”) {
rewrite ^(.*) http://www.youdomain.com$1 permanent;
}
nginx rewrite规则中的flags:
last – 基本上都用这个Flag。
break – 中止Rewirte,不在继续匹配
redirect – 返回临时重定向的HTTP状态302
permanent – 返回永久重定向的HTTP状态301