2nd attempt at denying .git directory
[website] / .htaccess
1 Options Indexes Includes
2 XBitHack On
3 AddType text/html .template
4 AddOutputFilter INCLUDES .template
5
6 # deny access to the toplevel .git directory
7 <Directory .git>
8         Order Deny,Allow
9         Deny from All
10 </Directory>