web-default/.htaccess

13 lines
220 B
ApacheConf
Raw Permalink Normal View History

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
# block git repo
2020-07-02 21:53:21 +00:00
RewriteRule ^.git/(.*) - [F,L]
RewriteRule ^.gitattributes - [F,L]
RewriteRule ^.gitignore - [F,L]
RewriteRule ^.gitmodules - [F,L]
</IfModule>