.htaccess 691 B

1234567891011121314151617181920
  1. # This file is script/.htaccess -- the default distribution contains this
  2. # file to prevent script/ files from being accessed directly by browsers
  3. # (this is a potential, albeit very unlikely, security hole).
  4. #
  5. # If you alter or replace this file, it will likely be overwritten when
  6. # you upgrade from one version of PmWiki to another. Be sure to save
  7. # a copy of your alterations in another location so you can restore them,
  8. # and you might try changing this file to be read-only to prevent a PmWiki
  9. # upgrade from overwriting your altered version.
  10. <IfModule !mod_authz_host.c>
  11. Order Deny,Allow
  12. Deny from all
  13. </IfModule>
  14. <IfModule mod_authz_host.c>
  15. Require all denied
  16. </IfModule>