我有这样的结构
/ < root folder
/Site/Public/.htaccess
/Site/Public/index.php
/Site/Public/error.php
/Site/Public/images/chat.png
在我的 htaccess 中,我禁用了对子文件夹的访问并设置了默认的 403 文档,如下所示:
ErrorDocument 403 error.php
Options All -Indexes
但问题是,除非我使用从根目录开始的完整路径,否则我无法让它选择那个 error.php 文件。我也试过这个
ErrorDocument 403 chat.png
而且它也不会在这两种情况下都显示一个字符串。谁能告诉我如何在不使用绝对路径的情况下定位那个 error.php 文件?
实验网址是localhost/Site/Public/images