Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想这样做
<Files "config.xml"> order allow,deny deny from all </Files>
在与名称 config.xml 匹配的所有子目录中的所有文件上
如何做到这一点?我想我必须使用正则表达式。
谢谢
这会将任何请求中的 confix.xml 重定向到 403 禁止页面:
RewriteEngine On RewriteCond %{REQUEST_URI} .*/config\.xml [NC] RewriteRule .* / [F,L]