메인 서브도메인 빼고 redirect 시키기 htaccess
본문
test.a.com 이라는 서브도메인이 있는데,
test.a.com 딱 이거만 서브페이지로 나타내고
test.a.com/adm~ 이나 test.a.com/bbs~ 같은 링크는 그냥 a.com으로 .htaccess를 통해 연결시킬 수 있나요?
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(test\.a\.com)
RewriteRule (.*) http://a.com/$1 [301, L]
이렇게하니까 다 a.com으로 가버려서 서브페이지가 안뜨네요...
아시는 분 도와주세요..ㅜ
답변 1
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(test\.a\.com)
RewriteCond $1 !^([/adm]|[/bbs])
RewriteRule (.*) http://a.com/$1 [301, L]
답변을 작성하시기 전에 로그인 해주세요.