請幫我將下面的內容轉換為 modrewrite 規則。
<If "%{HTTP_HOST} == 'm-dev.domain.com'">
Redirect "/subdomain/page-to-load" "http://m-dev.domain.com/subdomain/page-to-load-mobile"
</If>
如果無法在 apche 2.2 上工作,因此我需要使用 mod 重寫。
答案1
RewriteCond %{HTTP_HOST} =m-dev.domain.com
RewriteRule ^/?subdomain/page-to-load$ /subdomain/page-to-load-mobile [L,R=permanent]