我想配置apache2来托管XP上的多个网站。编辑httpd.conf文件不太确定。任何人都可以帮助配置部分吗?
答案 0 :(得分:0)
查看有关设置虚拟主机的页面:http://httpd.apache.org/docs/2.0/vhosts/examples.html
答案 1 :(得分:0)
我认为您只能使用XP托管一个网站。
但如果您可以在此处托管更多内容,请将代码放在httpd.conf
NameVirtualHost my.ip.addr.ess
<VirtualHost my.ip.addr.ess>
ServerName www.domain.com
ServerPath /domain
DocumentRoot /htdocs/domain
</VirtualHost>
原始来自Apache网站
NameVirtualHost 111.22.33.44
<VirtualHost 111.22.33.44>
ServerName www.domain.tld
ServerPath /domain
DocumentRoot /web/domain
</VirtualHost>