summaryrefslogtreecommitdiff
path: root/.htaccess
blob: bdf8c201554d20eccb491ab7c9c387c65d1a5857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
AddType image/svg+xml svg
AddType image/svg+xml svgz

# PROTECT all htaccess files
<Files ~ "^[\._]ht">
  Order Allow,Deny
  Deny from all
  Satisfy All
</Files>

# PROTECT config.php
<files config.php>
  Order Allow,Deny
  Deny from all
  Satisfy all
</files>