虚拟目录访问路径问题

虚拟目录访问路径问题

<VirtualHost   *:80>
        ServerAdmin   bdwjh@163.com
        DocumentRoot     "d:\sbh "
        ServerName   www.dcity.com

        DirectoryIndex       index.shtml      
        <Location   /   >
        </Location>
<Directory   "d:\sbh ">
        Options   All  
    AllowOverride   None
        Order   allow,deny
        Allow   from   all
</Directory>
<VirtualHost>

是配置成功了,可是每个文件上都加了sbh目录如
wwww.dcity.com/sbh/a.html,想去掉sbh,如何做呢?

另外:单个IP对应多域名服务时,是否可以用同一端口?
up