모든 트래픽을 리디렉션해야 합니다.
http://subdomain.domain.com/
에게
http://subdomain.domain.com/folder/
물론 '폴더'는 특정 폴더입니다. 나는 이것을 시도했습니다 :
RewriteCond %{HTTP_HOST} ^subdomain\.domain\.com$
RewriteRule ^.*$ http://subdomain.domain.com/folder/ [L]
하지만 작동하지 않습니다. 뭐가 문제 야?
답변1
이 시도:
RewriteCond %{HTTP_HOST} ^subdomain\.domain\.com$
RewriteRule ^/$ http://subdomain.domain.com/folder/ [R,L]
내가 변경한 유일한 변경 사항은 R
RewriteRule 뒤에 옵션을 추가하는 것이었습니다. 이 옵션은 Apache에게 302 리디렉션을 수행하도록 지시합니다. R=301
영구 리디렉션을 원하는 경우 사용할 수 있습니다 .