我想保护位于uploads
的wordpress中的http://site.com/wp-content/uploads/assets
文件夹中的目录,因此我尝试将.htaccess
添加到assets
文件夹,其中包含以下内容代码:
Options All -Indexes
<FilesMatch ".(htaccess|mustache)$">
Order Allow,Deny
Deny from all
</FilesMatch>
我的assets
文件夹也包含子文件夹,其中包括css和图像文件。我正在尝试限制访问浏览目录并直接访问我的.mustache
模板文件。
但是,CSS不会加载,在尝试链接到我的页面时会产生500错误。
示例结构:
/assets
template.mustache
image.jpg
file.php
media/
style.css
script.js
谁能看到我做错了什么?
谢谢!