호스팅에 abc.com과 test.com를 연결해 놓는다.주 도메인은 abc.com 이다.test.com 으로 접속했을 때 index.html 가 아닌test.com/test/index.html 으로 접속하고 싶다.그럴 때 사용하는 방법이다. .htaccess 파일을 생성한다.아래 내용을 넣고 저장한다. 방법1RewriteEngine OnRewriteCond %{HTTP_HOST} ^test\.com [NC]RewriteRule ^(.*)$ https://abc.com/test/ [L,R=301] 방법2index 파일에 추가 방법3페이지 이동