.htaccess 260 B

12345678910111213141516
  1. AddType image/svg+xml svg
  2. AddType image/svg+xml svgz
  3. # PROTECT all htaccess files
  4. <Files ~ "^[\._]ht">
  5. Order Allow,Deny
  6. Deny from all
  7. Satisfy All
  8. </Files>
  9. # PROTECT config.php
  10. <files config.php>
  11. Order Allow,Deny
  12. Deny from all
  13. Satisfy all
  14. </files>