程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> apache配置多個虛擬主機 localhost訪問不了解決方案,apachelocalhost

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

編輯:關於PHP編程

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


在httpd-vhosts.conf,重定向localhost

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "D:/PHPAPACHERUN"
    ServerName localhost
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>

 

而如果出現訪問127.0.0.1的結果不是自己想要的,可能是因為httpd-vhosts.conf,存在了多個<VirtualHost *:80>,地址127.0.0.1按順序解析,解析到第一個,修改DocumentRoot的地址或調整順序即可。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved