.htaccess 363 B

12345678910111213141516
  1. # deny access to _all_ files in the core, including changelog.txt and error.log
  2. # original borrowed from owncloud
  3. # line below if for Apache 2.4
  4. <ifModule mod_authz_core.c>
  5. Require all denied
  6. </ifModule>
  7. # line below if for Apache 2.2
  8. <ifModule !mod_authz_core.c>
  9. deny from all
  10. Satisfy All
  11. </ifModule>
  12. # section for Apache 2.2 and 2.4
  13. IndexIgnore *