apache配置多個虛擬主機 localhost訪問不瞭解決方案

在httpd-vhosts.conf,重定向localhostweb

<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "D:/PHPAPACHERUN"
    ServerName localhost
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>ast

 

而若是出現訪問127.0.0.1的結果不是本身想要的,多是由於httpd-vhosts.conf,存在了多個<VirtualHost *:80>,地址127.0.0.1按順序解析,解析到第一個,修改DocumentRoot的地址或調整順序便可。error

相關文章
相關標籤/搜索