1
我想將子域重定向到不在同一個域中的另一個子域。如何使用htaccess將子域重定向到另一個子域
例子:
subdomain.mydomain.com - > subdomain.myotherdomain.com
我試過下面的代碼:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^subdomain.domain\.com$ [NC]
RewriteRule ^(.*)$ http://subdomain.myotherdomain.com [R=301,L]
似乎是的RewriteCond不工作...
你們能幫我嗎?
謝謝 達明
在這些情況下沒有錯。 .htaccess可能未啓用。 – anubhava