我使用.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文件的站点在这个服务器上运行良好,为什么这个站点在转到根目录时不能正常工作?
非常感谢提前!
答案 0 :(得分:0)
您可能缺少根目录中的.htaccess
文件。如果是这种情况,您将需要至少创建一个内容:
DirectoryIndex index.html
这将允许“/”映射到正确的位置。