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

apache虛擬主機配置問題解決方案

編輯:關於PHP編程

1 首先在D:\wamp\bin\apache\Apache2.2.21\conf找到httpd.conf文件打開然後大概在460多行找到 去掉#,然後就是下面的情況 # Virtual hosts Include conf/extra/httpd-vhosts.conf 2 然後在打開D:\wamp\bin\apache\Apache2.2.21\conf\extra中的httpd-vhosts.conf文件 在文件的末尾加上 <VirtualHost *:80>     ServerAdmin [email protected]     DocumentRoot "d:/wamp/www/4/huaguoshan"     ServerName www.hgs2013.cn     ErrorLog "logs/dummy-host3.example.com-error.log"     CustomLog "logs/dummy-host3.example.com-access.log" common </VirtualHost>   <VirtualHost *:80>     ServerAdmin [email protected]     DocumentRoot "d:/wamp/www/test"     ServerName www.test.cn     ErrorLog "logs/dummy-host4.example.com-error.log"     CustomLog "logs/dummy-host4.example.com-access.log" common </VirtualHost> 寫入自己想要的域名。   3 最後打開C:\Windows\System32\drivers\etc中的hosts文件 在文件的最後面把剛才定義的域名給指定一下 127.0.0.1      www.hgs2013.cn 127.0.0.1      www.test.cn 這樣就OK了,純屬個人見解

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