着信http要求を変更する必要があります。
- ~のため
www.pathfinder.com/T/client/care/login.html
- のように見える
www.Theshop/care/login.html
ブラウザの「URL」行にあります。
「URL」書き換えを使用してこれをどのように実行できますか?
頑張った
RewriteEngine on
RewriteRule "^www.pathfinder.com/T/clients/care/$" "www.Theshop.com/care/"
しかし、これはうまくいかないようです。
ベストアンサー1
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^/t/client/(care/.*)$ http://www.theshop.com/$1 [NC,R,L]
その後、リダイレクトさ
http://www.pathfinder.com/T/client/care/foo.html
れます。http://pathfinder.com/T/client/care/foo.html
http://theshop.com/care/foo.html
ロゴの使用
ログインページのみをリダイレクトするには、以下を使用してください。
RewriteRule ^/t/client(/care/login.html)$ http://www.theshop.com$1 [NC,R,L]