0
この関数を "RewriteRule"形式に変換してください。.htaccessのRedirectMatchをRewriteRuleに変換する方法
これはリダイレクトループの原因となるので、私はこのフォーマットから変更する必要があると私はRewriteCond %{HTTP_HOST} !=1.1.10.7
を追加します。
私はこれを試してみましたが、作品ではありません。
RewriteCond %{HTTP_HOST} !=1.1.10.7 RewriteRule ^kubota-store-admin$ http://10.1.1.36/kubota-store-admin/$1 [L,NC,NE,R=301]
私は必要な結果は以下のとおりです。
- http://example.com/ =>http://example.com/
- http://example.com/test/ =>http://example.com/test/
- http://example.com/auth/ =>http://1.1.10.7/auth/
- http://example.com/auth/login =>http://1.1.10.7/auth/login
- http://example.com/auth/forget_password =>http://1.1.10.7/auth/forget_password
誰でも助けることができますか?ありがとう。
お返事ありがとうございます。 Btw、このフォーマットを使用できますか? 1.1.10.7以外のhttp_hostを処理する 'RewriteCond%{HTTP_HOST}!^ 1.1.10.7 $' – bennysantoso
はい、宛先ドメインを除外する負のRewriteCondを使用できます。 – starkeen