本地Apach服务器配置多个域名 方法
第一步:配置 httpd.conf 开启 虚拟主机 配置模块 去掉 " Include conf/extra/httpd-vhosts.conf " 前面的" # " # Virtual hosts Include conf/extra/httpd-vhosts.conf 第二步:配置 httpd-vhosts.conf 开始 将自定义的本地域名 与 web目录 关联 这里自定义了 www.royal.org www.superapp.com www.api.com 这三个本地域名 ( 当然这三个域名 是不能远程访问的 什么原因 你懂的! ) 1 2 3 4 5 6 7 <VirtualHost *:80> ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "D:\web\apache2.2\Apache2\htdocs\Royal" ServerName www.royal.org ErrorLog "logs/dummy-host2.example.com-error.log" CustomLog "logs/dummy-host2.example.com-access.log" common </VirtualHost> 1 2 3 4 5 6 7 <VirtualHost *:80>