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 264B

1234567891011121314
  1. # line below if for Apache 2.4
  2. <ifModule mod_authz_core.c>
  3. Require all denied
  4. </ifModule>
  5. # line below if for Apache 2.2
  6. <ifModule !mod_authz_core.c>
  7. deny from all
  8. </ifModule>
  9. # section for Apache 2.2 and 2.4
  10. <ifModule mod_autoindex.c>
  11. IndexIgnore *
  12. </ifModule>