apache访问文件夹下文件 显示object not found解决方法

<VirtualHost *:88>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "项目"

Alias /path名/ "指向路径"
<Directory "指向路径">
Order allow,deny
Allow from all
</Directory>

ServerName www.xxx.com
</VirtualHost>

原文地址:https://www.cnblogs.com/tudou1223/p/5000361.html