1,用记事本打开apache目录下httpd文件(如:D:wampinapacheapache2.2.8conf),找到如下模块
# Virtual hosts
#Includeconf/extra/httpd-vhosts.conf
去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件。这时候重启wamp环境,无法打开localhost,需要在httpd-vhosts.conf配置一下。
2,打开host文件(C:WINDOWSsystem32driversetchosts),增加一行代码
127.0.0.1 szyqbbs.com
3,用记事本打开httpd-vhosts文件,配置好localhost虚拟主机,参照httpd-vhosts文件中实例,修改成如下:
<VirtualHost *:80> DocumentRoot "D:/wamp/www" ServerName myserver.com </VirtualHost> <VirtualHost *:80> ServerAdmin webmaster@youremail.com DocumentRoot "d:/www/szyqbbs" ServerName szyqbbs.com ErrorLog "logs/your_web_error.log" CustomLog "logs/your_web_access.log" common </VirtualHost>
<VirtualHost *:80> DocumentRoot "D:/wamp/www" ServerName localhost </VirtualHost>
修改配置如下:
DocumentRoot 修改为本地wamp环境下的www目录(如:D:wampwww)
ServerName改为localhost或者自定义的server如server.com
4,在浏览器中打开test.biuuu.com,发现如下错误403 Forbidden错误
Forbidden
You don't have permission to access / on this server.
分析:这主要是目录访问权限没有设置,需要设置对目录的访问权!
5,打开httpd文件,加入 如下语句
<Directory "D:/www/"> Options Indexes FollowSymlinks AllowOverride All Require all granted </Directory>
插入localhost需要访问的目录
DocumentRoot "D:/wamp/www/" <Directory "D:/wamp/www/"> Options Indexes FollowSymLinks AllowOverride none Require all granted </Directory>
#<Directory />
# AllowOverride none
# Require all denied
#</Directory>
6,重启Apache,虚拟主机配置成 功!
注意事项
php2.4+中是把Order deny,allow Deny from all两项合并为Require all denied的。
Require all denied改为允许状态Require all granted。然后重启Apache,还是没有用,这是为什么呢?
#<Directory />要注释的
1,目录路径,如E:WebRootiuuu
2,访问权限,如上Deny from all修改为allow from all
3,host文件,配置虚拟域名host指向
4,httpd文件,打开Include conf/extra/httpd-vhosts.conf模块
5,httpd-vhosts文件,配置虚拟主机