wind2003环境apache多域名配置,配置apache多域名,供大家学习参考。
1、httpd.conf
找到#include conf/extra/httpd-vhosts.conf,将前面的#也就是注释去掉
2.httpd.conf
找到(修改Directory路径为你所有站点根目录,我本地是d:wwwroot)
修改 AllowOverride None->AllowOverride All
<Directory “D:/wwwroot”>
#
# Possible values for the Options directive are “None”, “All”,
# or any combination of:
#Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that “MultiViews” must be named *explicitly* — “Options All”
# doesn’t give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
3、去extra目录下找到httpd-vhosts.conf
4、修改c盘windows->system32->driver->etc->hosts文件
添加:127.0.0.1 www.XXX.com
重启apache,使之生效。