兩個不同的虛擬主機,顯示一頁

兩個不同的虛擬主機,顯示一頁

我有兩個使用虛擬主機配置的不同網站(虛擬主機檔案的內容發佈在下面)我只是複製了預設檔案並編輯了幾行...

當我將瀏覽器定向到兩個網站中的任何一個時,僅顯示兩個網站中第一個的內容...

為什麼?

<VirtualHost *:80>
    ServerAdmin [email protected]

    DocumentRoot /var/www/hunterprojects.com/public_html
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/hunterprojects.com/public_html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

第二個:

<VirtualHost *:80>
    ServerAdmin [email protected]

    DocumentRoot /var/www/dodolabarchive.ca/public_html
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/dodolabarchive.ca/public_html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

答案1

您似乎缺少虛擬主機的 ServerName 部分

<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName hunterprojects.com
    DocumentRoot /var/www/hunterprojects.com/public_html

<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName dodolabarchive.ca
    DocumentRoot /var/www/dodolabarchive.ca/public_html

這裡還有一個 apache 文檔的鏈接,其中有更多關於此的信息http://httpd.apache.org/docs/2.0/mod/core.html#servername

相關內容