所以我试图拒绝来自特定文件夹的访问,除非从特定文件(showfile.php)访问它。
Root
resources (folder)
uploads (deny access from this folder)
showfile.php (access to /resources/uploads)
index.php (no access to /resources/uploads)
我已将.htaccess文件放在uploads文件夹(/resources/uploads/.htaccess)中,代码如下:
<FilesMatch "../../showfile.php">
Order Allow, Deny
Allow from all
</FilesMatch>
现在,当我尝试访问/ resources / uploads文件夹中的任何文件时,我收到的所有文件都是500(内部服务器错误)消息。
任何人都可以帮我解决这个问题?谢谢!