我已经使用 .conf 文件在 Apache 中建立了一个网站。其中的内容是:
Alias /clear /media/59a6e711-e77c-42f0-917f-1d022670e89d/clear
MaxRequestLen 2147483648
FcgidMaxRequestLen 2147483648
FcgidIOTimeout 300
<Directory /media/59a6e711-e77c-42f0-917f-1d022670e89d/clear>
Options +Indexes FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
allow from all
</Directory>
问题是,我可以访问http://domain.com/site/index.html,但是当我尝试访问http://domain.com/site/时,我收到 403 Forbidden 错误。
还有其他两个具有类似 .conf 文件的站点在此服务器上可以完美运行,为什么这个在进入根目录时不能正常运行?
提前谢谢了!