웹주소창에 xinet.kr 입력시 주소창 주소가 www.xinet.kr 표시시 아래와 같이 mod_rewrite 를 설정
<VirtualHost 10.10.10.1:80>
DocumentRoot /home/xinet/html
ServerName xinet.kr
RedirectMatch /(.*)$ http://www.xinet.kr/$1
CustomLog logs/access_log vcommon
</VirtualHost>
<VirtualHost 10.10.10.1:80>
DocumentRoot /home/xinet/html
ServerName www.xinet.kr
CustomLog logs/access_log vcommon
</VirtualHost>
주소창이 아닌 소스상에서 xient.kr이 www.xinet.kr로 변경시 virtualhost .conf 환경설정에 아래와 같이 추가
RewriteEngine On
RewriteCond %{HTTP_HOST} ^xinet.kr$ [OR] <– RewriteCond를 이용해 조건을 설정하는 겁니다.
RewriteCond %{HTTP_HOST} ^www.xinet1.kr$ [OR] <– [OR]는 말 그대로… or.. 조건입니다.
RewriteCond %{HTTP_HOST} ^xinet1.kr$ [OR]
RewriteCond %{HTTP_HOST} ^www.xinet2.kr$ [NC] <– [NC]는 대소문자 구분이 없다는 의미입니다.
RewriteRule ^/(.*) http://www.xinet.kr/$1 [L,R]