Rumah > Artikel > pembangunan bahagian belakang > window apache 多站点配置方法
1.让Apache在启动时能加载虚拟主机模块。
打开Apache安装目录下conf/httpd.conf文件,找到下面两行文字,把最前面的 # 号去掉,然后保存。
#LoadModule vhost_alias_module modules/mod_vhost_alias.so #Include conf/extra/httpd-vhosts.conf
2.配置完成后即可打开Apache安装目录下/conf/extra/httpd-vhosts.conf文件,在最后添加如下:
DocumentRoot是文件放置路径,ServerName是网站域名:
<VirtualHost*:80> DocumentRoot"D:/Appserv/www/1" ServerName www.xxx.com </VirtualHost>
3.在host 文件 中加入域名:www.xxx.com
Atas ialah kandungan terperinci window apache 多站点配置方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!