一、启用 httpd-vhosts.conf
  在httpd.conf文件中启用
  在文件中搜索:Virtual hosts

  #Virtual hosts虚拟主机
  Include conf/extra/httpd-vhosts.conf

  二、在httpd-vhosts.conf做配置

 1   <VirtualHost 127.0.0.1:80>
 2   DocumentRoot "d:/myweb" 3   #这里配置欢迎页面
 4   DirectoryIndex my.html index.html index.htm index.php
 5     <Directory />
 6     Options FollowSymLinks
 7     #不许可别人修改我们的页面
 8     AllowOverride None
 9     #设置访问权限
10     Order allow,deny
11     Allow from all
12     </Directory>
13   </VirtualHost>

 

3、apache在默认情况下是不会处理php文件,只能处理html文件。