为什么我在apache中设置了虚拟目录但是不能访问?

为什么我在apache中设置了虚拟目录但是不能访问?

DocumentRoot "C:\ftp\html"
<Directory />
     Options FollowSymLinks
     AllowOverride None
     Order deny,allow
     Deny from all
     Satisfy all
</Directory>
<Directory "C:\ftp\html">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
#虚拟目录测试
Alias /document/ "D:\document"
<Directory "D:\document">
        Options Indexes MultiViews
        AllowOverride None
        Order deny,allow
        Allow from all
</Directory>
我重启apache也没提示出错啊?
我输入http://192.168.10.74:1080可以正常显示首页。
但我在ie中输入http://192.168.10.74:1008/document时这样显示:http 404没找到

是否是文件权限问题?
俺记得

在win下应该这样写
Alias /document  "D:/document"
多谢了,那我试一下
多谢了,可以访问了。