.htaccess (1) 썸네일형 리스트형 멀티도메인 호스팅에 대한 robots.txt 분리 설정 특정도메인에 대해서 robots.txt 설정이 되어야하는 경우 혹은 도메인 별로 robots.txt 설정이 필요한 경우 아래와 같이 .htaccess 상에 추가하면 됨. RewriteEngine On # abc.uhoon.co.kr 도메인에 대한 리디렉션 RewriteCond %{HTTP_HOST} ^abc\.uhoons\.co.kr$ [NC] RewriteRule ^robots\.txt$ robots_uhoons.txt [L] # b2b.uhoon.co.kr 도메인에 대한 리디렉션 RewriteCond %{HTTP_HOST} ^b2b\.uhoons\.co.kr$ [NC] RewriteRule ^robots\.txt$ robots_uhoons.txt [L] # 나머지 도메인에 대한 리디렉션 Rewrite.. 이전 1 다음