̃Gg[͂ĂȃubN}[Nɒlj

apache :: ドットから始まるファイル、ディレクトリにアクセス禁止



.htaccess .secret.txt .svn 等のドットから始まるファイル、ディレクトリにアクセス禁止

#403 Forbidden
RedirectMatch 403 /\.


ちなみにディレクトリのみに限定したければ

#403 Forbidden
RedirectMatch 403 /\..*/


どこぞのサイトには以下のように Directoryディレクティブ でいけると書いてあったが、
私の環境では 500 Internal Server Error が発生して動作しなかった。。

<Directory ~ "/\..+/">
      Order Deny,Allow
      Deny from All
</Directory>



server/apache/htaccess/redirectmatch.txt