# Virtual hosts
Include conf/extra/httpd-vhosts.conf
2.httpd-vhosts.conf文件中没有NameVirtualhost *:80这一句,所以我没管他。
3.在httpd-vhosts.conf文件中配置虚拟主机的代码如下:
<VirtualHost *:80>
#增加站点
DocumentRoot "D:/discuz"
#增加主机名
ServerName
www.wechat.com
#配置权限
<Directory "D:/discuz">
#设定方式:代表匹配权限的顺序
Order Deny,Allow
#限定范围:按照顺序执行
Deny from all
Allow from all
</Directory>
</VirtualHost>
4.在本地DNS中,即hosts中曾加了两句:
127.0.0.1 localhost
127.0.0.1
www.wechat.com
问题:重启apache后发现不管是html文件和php文件都能在apache目录的htdocs文件夹中被访问,可是却不能在如上配置的虚拟主机目录下去访问,显示not found,怎么解决才能在两个目录下都能访问文件,希望各位指点,谢谢。