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]