Apache mod_rewrite域到子域?

时间:2010-10-10 04:01:42

标签: apache mod-rewrite

我有这个地址http://www.example.com并且有这个页面http://www.example.com/world。 我可以用mod_rewrite做到这一点,我的页面变为http://world.example.com吗? 任何链接,教程,......,如果我能做到这一点,会很好吗? 例如,这些链接会是什么:

  http://www.example.com/world/some-other-page
  http://www.example.com/world/and-second-apge

这些链接也会被重写为:

 http://world.example.com/some-other-page
 http://world.example.com/and-second-apge

另一个问题,这对SEO有用吗?

对不起,我很抱歉。

1 个答案:

答案 0 :(得分:11)

试试这个:

RewriteEngine On

RewriteCond %{http_host} ^domain.com [nc]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,NC]

RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^world/([a-z0-9\-_\.]+)/?(.*)$ http://$1.domain.com/$2 [QSA,NC,R,L]

这样:

http://www.domain.com/world/page => http://world.domain.com/page