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 rewrite を使用する必要があります。

答え1

RewriteCond %{HTTP_HOST} =m-dev.domain.com
RewriteRule ^/?subdomain/page-to-load$ /subdomain/page-to-load-mobile [L,R=permanent]

関連情報