Apache 虚拟主机 配置方法

时间:2024-12-26 22:38:14

  打开httpd.conf文件

  去掉LoadModule vhost_alias_module modules/mod_vhost_alias.so前面的#号

  去掉Include conf/extra/httpd-vhosts.conf这句前面的#号

  然后打开apache目录下\conf\extra下的httpd-vhosts.conf文件,加入如下代码

  #配置自己的虚拟主机

  <VirtualHost *:80>

  #网站目录,如果在www目录下的php目录,下面 #就填写F:/www/php

  DocumentRoot "D:/www/php/"

  #域名

  ServerName www.abc.com

  #这里配置欢迎首页面

  DirectoryIndex index.html index.htm index.php

  <Directory />

  Options FollowSymLinks

  #不允许别人修改我们的页面

  AllowOverride None

  #设置访问权限

  order allow,deny

  Allow from all

  </Directory>

  </VirtualHost>

  把ServerName改成你自己的,最后重启Apache。