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.

.htaccess 495B

12345678910111213141516171819202122232425
  1. # Section for Apache 2.4 to 2.6
  2. <IfModule mod_authz_core.c>
  3. Require all denied
  4. </IfModule>
  5. <IfModule mod_access_compat.c>
  6. Order Allow,Deny
  7. Deny from all
  8. Satisfy All
  9. </IfModule>
  10. # Section for Apache 2.2
  11. <IfModule !mod_authz_core.c>
  12. <IfModule !mod_access_compat.c>
  13. <IfModule mod_authz_host.c>
  14. Order Allow,Deny
  15. Deny from all
  16. </IfModule>
  17. Satisfy All
  18. </IfModule>
  19. </IfModule>
  20. # Section for Apache 2.2 to 2.6
  21. <IfModule mod_autoindex.c>
  22. IndexIgnore *
  23. </IfModule>