我在以下 URL 有一个图像文件夹。
www.mysite.com/uploads/
在不同的页面上:
www.mysite.com/search.php/
我正在尝试使用正确的标签链接访问其中的图像,但是我得到了:
Forbidden
You don't have permission to access /uploads/ on this server.
所以我开始涉足一个.htaccess
文件,但我不知道自己在做什么,我尝试查看一些文档但没有运气,我什至从另一个问题中举了一个例子..这是我的.htaccess
文件的外观:
<FilesMatch "\.(gif|jpe?g|png)$">
Order allow,deny
Allow from all
</FilesMatch>
<Directory /uploads>
# All access controls and authentication are disabled
# in this directory
Satisfy Any
Allow from all
</Directory>
关于如何让它允许访问该文件夹的任何想法?