我试图拒绝使用.htaccess:
直接访问子目录# Deny direct access
<Directory "/cron">
Deny from all
</Directory>
上面的代码位于我的public_html目录的.htaccess文件中。我想阻止的子目录位于public_html / cron。
当我直接在浏览器中输入/ cron文件夹中的地址时,我得到500服务器错误而不是403.任何想法为什么?
答案 0 :(得分:0)
您无法在<Directory>
个文件中使用.htaccess
。
http://httpd.apache.org/docs/2.2/en/mod/core.html#directory
上下文:服务器配置,虚拟主机
在/cron/.htaccess
文件中使用:
deny from all