將 If 重寫規則轉換為 modrewrite

將 If 重寫規則轉換為 modrewrite

請幫我將下面的內容轉換為 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]

相關內容