apache目录问题

apache目录问题

apache和tomcat整合好了

现在是有一个问题

在tomcat_home/webapps/下有ROOT,test,info等三个目录
在单独的tomcat时,那么,就是相当于3个虚拟目录,可以通过
http://######:8080/
http://######:8080/test
http://######:8080/info

那么,怎么样在apache里,通过配置,可以
http://######/
http://######/test
http://######/info
访问

问题:tomcat的默认是ROOT目录,apache是配置ROOT是默认的访问目录吗
APACHE里有个虚拟机设置:
<VirtualHost   127.0.0.1:80>
        ServerAdmin   webmaster@dummy-host.example.com
        DocumentRoot   E:\myDOCUMENTS\外包\hou\loeb
        ServerName   127.0.0.2
  #       ErrorLog   logs/dummy-host.example.com-error_log
  #     CustomLog   logs/dummy-host.example.com-access_log   common
</VirtualHost>
<VirtualHost   127.0.0.1:80>
ServerAdmin   admin@localhost.com
ServerName   127.0.0.1
DocumentRoot   F:/tomcat/webapps
DirectoryIndex   index.htm   index.html   default.htm   index.php   index.jsp   index.htm1   index.htm1
</VirtualHost>

但是,还是不能通过访问
http://localhost访问tomcatROOT下的文件
up