apache 는 같은 가상 호스트 에 여러 도 메 인 이름 으로 접근 하도록 설정 합 니 다.

http://bbs.csdn.net/topics/380248520
apache 2.2
httpd - vhosts. conf 에서 도 메 인 이름 을 어떻게 설정 하 든 한 곳 에 접근 합 니 다.
지금 내 방법 은 세 개의 VirtualHost 를 설정 하 는 것 이다. 매우 정상 적 인 것 은 그들 을 모두 한데 모 으 려 는 것 이다.
시험 해 보 았 습 니 다: ServerName kj. scsyyjxh. org kj. scsyx. com kj. scsyx. org
이렇게 하면 안 된다.
어떻게 하 는 지 아 시 는 분?

<VirtualHost *:80>
ServerName kj.scsyyjxh.org
ProxyPass / http://localhost:89/
ProxyPassReverse / http://localhost:89/
</VirtualHost>


<VirtualHost *:80>
ServerName kj.scsyx.org
ProxyPass / http://localhost:89/
ProxyPassReverse / http://localhost:89/
</VirtualHost>

<VirtualHost *:80>
ServerName kj.scsyx.com
ProxyPass / http://localhost:89/
ProxyPassReverse / http://localhost:89/
</VirtualHost>

apache 의 가상 호스트 에 글 을 쓰 면.ServerAlias www. cq. com www. gd. com 과 같은 문 구 는 가상 호스트 에 여러 개의 도 메 인 이름 을 추가 할 수 있 고 이 도 메 인 이름 들 은 모두 같은 사이트 에 방문 할 수 있다.
<VirtualHost *:80>
ServerName kj.scsyyjxh.org
ServerAlias kj.scsyx.com  kj.scsyx.org  
ProxyPass / http://localhost:89/
ProxyPassReverse / http://localhost:89/
</VirtualHost>

ServerAlias kj.scsyx.com  kj.scsyx.org      //    

좋은 웹페이지 즐겨찾기