0
我有在Apache中配置虛擬主機2.2.3 CentOS的, 一些麻煩我具有以下配置:阿帕奇:配置虛擬主機
的httpd.conf
NameVirtualHost mydomain.site.ch
<VirtualHost mydomain.site.ch>
ServerName mydomain.site.ch
DocumentRoot /home/django_www/hello
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /var/www/html
</VirtualHost>
/etc/hosts中
127.0.0.1 localhost.localdomain localhost
x.y.z.89 mydomain.site.ch
我需要匹配所有來到這個服務器的請求與第二個VirtualHost條目,除了這個域名「mydomain.site.ch」來的。 但結果是:使用這種配置,我得到了第一個VirtualHost條目處理的所有請求..(配置語法是OK!)有關如何糾正此問題的任何想法?
謝謝,我會嘗試它現在:) – Kreshnik
只需編輯它 - 添加服務器名到你的第二個虛擬主機。 –
使用這個httpd.conf瘋了,不想工作(我試過很多不同的配置......)!!! – Kreshnik