程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 解析wamp5下虛擬機配置文檔

解析wamp5下虛擬機配置文檔

編輯:PHP綜合

Wamp下,虛擬機配置分為三個步驟,實例如下:
1.修改Hosts文件
C:\WINDOWS\system32\drivers\etc\Hosts
127.0.0.1 dz1.test.com

2.編輯wamp\bin\apache\Apache2.2.11\conf\extra\httpd-vhosts.conf文件,在文件底部加入以下代碼
<VirtualHost *:80>
ServerName dz1.test.com
ServerAlias dz1.test.com
DocumentRoot "e:/wamp/www/dz1"
</VirtualHost>

另外加上這句以後,如果沒有下面這句的記得加上,不然打localhost打不開最好再加上
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot "D:/wamp/www"
</VirtualHost>

3.編輯E:\wamp\bin\apache\Apache2.2.11\conf\httpd.conf文件,在文件底部加入以下代碼
注:不加此代碼會報403錯誤
打開配置文件httpd.conf,並去掉#Include 0conf/extra/httpd-vhosts.conf前面的#號!!
<Directory "e:/wamp/www/dz1">
Options Indexes FollowSymLinks
AllowOverride all
Order Allow,Deny
Allow from all
</Directory>
重啟Apache,然後測試dz1.test.com,就可以了。
。。。。。。。。。。。。。。。。
注意紅色加粗的部分,必須相同,且文件存在

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