들어오는 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]