Files
amble_api/.htaccess
2025-07-15 15:54:43 +05:30

36 lines
503 B
ApacheConf
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Disable index view
Options -Indexes
# Hide a specific file
<Files .env>
Order allow,deny
Deny from all
</Files>
# Hide a specific file
<Files .git>
Order allow,deny
Deny from all
</Files>
<Files .git/config>
Order allow,deny
Deny from all
</Files>
<Files .github>
Order allow,deny
Deny from all
</Files>
<Files .htaccess>
Order allow,deny
Deny from all
</Files>
# Hide a specific file
#<Files config>
#Order allow,deny
#Deny from all
#</Files>