域名domian.com,要将m.domain.com转到www.domain.com/mobile,.htaccess怎写?
|  |      1abelyao      2014-12-30 09:41:11 +08:00  2 RewriteEngine on RewriteCond %{HTTP_HOST} ^m.domain.com [NC] RewriteRule ^(.*)$ http://www.domain.com/mobile/$1 [L,R=301] | 
|  |      3haozimiing      2014-12-30 10:52:04 +08:00 正确。 |