0

我们想将子域重定向到子目录:

customerservice.example.com 到 example.com/customerservice。

这是如何在 .htaccess 文件中完成的?

我以为:

重定向 301 customerservice.example.com example.com/customerservice

我的假设是否正确?

4

1 回答 1

0

重定向不将完整域作为第一个参数,您必须使用/

Redirect 301 / http://example.com/customerservice

但是,如果此域位于另一个域的同一根目录上,并且您需要匹配域名,则必须使用以下内容:

RewriteCond %{HTTP_HOST} ^customerservice\.example\.com$
RewriteRule ^(.*)$ http://example.com/customerservice/$1 [R=301,L]
于 2013-07-29T21:49:44.773 回答