호스팅에 abc.com과 test.com를 연결해 놓는다. 주 도메인은 abc.com 이다. test.com 으로 접속했을 때 index.html 가 아닌 test.com/test/index.html 으로 접속하고 싶다. 그럴 때 사용하는 방법이다. 상위 index.html 파일 있는 곳에 .htaccess 파일을 생성한다. 아래 내용을 넣고 저장한다. RewriteCond %{HTTP_HOST} = test.com RewriteRule ^(.*)$ /test/index.html index 파일에 추가