标签: apache .htaccess
我有一个包含以下文件的目录:
/files/archive.01.json /files/archive.02.json /files/archive.03.json /files/hello.php
我需要.htaccess来阻止访问该目录中的所有.json文件。有什么想法吗?
答案 0 :(得分:4)
试试这个:
<Files "*.json"> Order Deny,Allow Deny from all </Files>