我正在尝试使用.htaccess
文件中的下述代码阻止对某些文件夹的直接访问。
它在Xampp上工作得很好(在尝试直接访问文件夹时出现500错误),但在Wamp上(它会产生500错误或所有页面,甚至是索引页面)。
在Xampp中,我已将.htaccess
文件放在htdocs
文件夹中,而在Wamp中我将.htaccess
文件放在www
文件夹中。
我做错了什么?
RewriteEngine On
# Match directory names and forbid access with the F flag
RewriteRule .*(Images|Videos|Scripts) - [F]