我是php的新手我想限制用户访问文件夹访问权限用户无法访问我的图片文件夹,我在该图片文件夹中有一个拇指文件夹,该怎么办呢。
例证: - 我有一个文件夹 _cat_img ,并且我还有一个文件夹名称是 humb。我想限制两个文件夹的用户 我尝试使用.htaccess代码,但它不起作用。 我在htaccess中使用它
**Deny from All**
但它限制所有文件夹我应该怎么做以限制用户访问特定文件夹任何人帮我这个
答案 0 :(得分:0)
使用Directory
apache指令指定特定目录。然后在其中提供访问指令(允许或拒绝)。
<Directory "fullpath/_cat_img">
Order Deny,allow
Deny from all
</Directory>
<Directory "full_path/thumb">
Order Deny,allow
Deny from all
</Directory>
修改强>
激活.htaccess编辑你的apache conf和你网站的虚拟主机部分添加这些。
<Directory documnet_root>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
重启apache。