关于   Apache   虚拟主机配置中的   DocumentRoot   配置

关于   Apache   虚拟主机配置中的   DocumentRoot   配置

使用   1   个   IP   地址,配置多个域名如下:
NameVirtualHost   111.22.33.44
<VirtualHost   111.22.33.44>
ServerName   www.sample.com
DocumentRoot   /www/sample
</VirtualHost>

<VirtualHost   111.22.33.44>
ServerName   www.sample2.com
DocumentRoot   /www/sample2
</VirtualHost>


如果在Windows   系统里该如何写   DocumentRoot?

我用了
DocumentRoot   c:\www\test1\     和   DocumentRoot   c:/www/test1

都无法使用。该如何解决?
DocumentRoot   "c:/www/test1 "
“c:\www\test1\”吧
用windows的右斜杠最后就不能有斜杠,linux的左斜杠就可以,下面这2种格式都可以:

DocumentRoot   c:\www\test1
DocumentRoot   c:/www/test1/
我不知道!    /usr/web/index.html吧!