.htaccess 812 B

123456789101112131415161718192021222324
  1. #####################################################################################################
  2. # Apache configuration (REQUIRED to prevent access for .inc files /especially config files/)
  3. # You NEED to add the following lines into your Apache vhost configuration (without the # character):
  4. # <Directory /client/installation/directory/auth/>
  5. # AllowOverride Limit
  6. # <IfVersion >= 2.3>
  7. # Require all granted
  8. # </IfVersion>
  9. # <IfVersion < 2.3>
  10. # Order allow,deny
  11. # Allow from all
  12. # </IfVersion>
  13. # </Directory>
  14. #####################################################################################################
  15. <Files ~ "\.inc$">
  16. <IfVersion >= 2.3>
  17. Require all granted
  18. </IfVersion>
  19. <IfVersion < 2.3>
  20. Order allow,deny
  21. Deny from all
  22. </IfVersion>
  23. </Files>