You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
380 B

  1. #unix -- do not change or move
  2. <IfModule mod_authz_host>
  3. Require all denied
  4. </IfModule>
  5. <IfModule !mod_authz_host>
  6. Order allow,deny
  7. Deny from all
  8. </IfModule>
  9. <FilesMatch "\.(gif|jpe?g|png)$">
  10. <IfModule mod_authz_host>
  11. Require all granted
  12. </IfModule>
  13. <IfModule !mod_authz_host>
  14. Order allow,deny
  15. Allow from all
  16. </IfModule>
  17. </FilesMatch>
  18. Options -Indexes