IT. POST LIST

POST ALL LABEL

Virtualhost Redirect 사용 법

By 때찌때찌맴매 - 12월 03, 2013



ex) xxxx.co.kr , xxxx.com 으로 접속 시 www.xxxx.com 으로 이동



ssl 설치 후 보안 인증이 잘 되지 않아 사용해 봤습니다.



기존 가상 호스트 여러개 사용 중 일때



#################### 가상호스트
<VirtualHost *:80>
ServerAdmin xxxx.com
DocumentRoot ‘E:/PansyMall_xxxx’
ServerName xxxx.com
ServerAlias www.xxxx.com
ErrorLog ‘logs/xxxx.Error.log’
CustomLog ‘logs/xxxx.Custom.log’ common
Redirect / http://www.xxxx.com
</VirtualHost>

##################### 가상호스트
<VirtualHost *:80>
ServerAdmin www.xxxx.co.kr
DocumentRoot ‘E:/PansyMall_xxxx’
ServerName www.xxxx.co.kr
ServerAlias www.xxxx.com
ErrorLog ‘logs/xxxx.Error.log’
CustomLog ‘logs/xxxx.Custom.log’ common
Redirect / http://www.xxxx.com
</VirtualHost>

##################### 가상호스트
<VirtualHost *:80>
ServerAdmin laseanmom.co.kr
DocumentRoot ‘E:/PansyMall_xxxx’
ServerName xxxx.co.kr
ServerAlias www.xxxx.com
ErrorLog ‘logs/xxxx.Error.log’
CustomLog ‘logs/xxxx.Custom.log’ common
Redirect / http://www.xxxx.com

</VirtualHost>

==================================================

기존에 있는 것으로 사용 가능





<VirtualHost *:80>
ServerName xxxx.co.kr ———> # 입력하면 연결되면서 주소가 아래(Redirect)로 변경

ServerAlias www.xxxx.com

Redirect / http://www.xxxx.com ——>url 입력창에 나오는 주소

</VirtualHost>

  • Share:

You Might Also Like

0 개의 댓글