Apache虚拟主机(三)

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

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

  二、在httpd-vhosts.conf做配置

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

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

上一篇:webpack2教程--从入门到放弃


下一篇:CentOS7 安装 anaconda