从www转发到顶级域名

时间:2011-10-24 18:19:55

标签: url redirect namespaces dns forwarding

我想将所有流量从www.mydomain.com重定向到mydomain.com,即使有特定路径(例如www.mydomain.com/article)

我可以通过我的域名注册商执行此操作,还是必须在服务器上执行此操作?

1 个答案:

答案 0 :(得分:2)

你可以通过简单的网址重写来实现:

<IfModule mod_rewrite.c>
  RewriteCond %{HTTPS} !=on
  RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
</IfModule>

(在apache上)