我想重定向这个
http://www.domain.com/test.php?sub=subdomain&type=cars
重定向到
http://subdomain.domain.com/cars
我已经有 mod_rewrite 规则来做相反的事情:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} !^(www)\. [NC]
RewriteCond %{HTTP_HOST} ^(.*)\.(.*)\.com [NC]
RewriteRule (.*) http://www.%2.com/index.php?route=$1&name=%1 [R=301,L]
使用htaccess,请帮助我...