2013-07-29 144 views
0

我們想一個子域重定向到一個子目錄:的.htaccess重定向域子域子目錄

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

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

我認爲:

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

我是正確的我的假設?

回答

0

重定向並不需要一個完整的域名作爲第一個參數,你必須使用/

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

但是,如果這個領域是另一個領域的同根,你需要相匹配的域名,你會必須使用這樣的事情:

RewriteCond %{HTTP_HOST} ^customerservice\.example\.com$ 
RewriteRule ^(.*)$ http://example.com/customerservice/$1 [R=301,L]