1
0
app/system/.htaccess

13 lines
203 B
ApacheConf
Raw Normal View History

2022-05-18 09:31:00 +00:00
# DISABLE ACCESS TO THIS FOLDER
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Apache 2.2
<IfModule !mod_authz_core.c>
Order Allow,Deny
Deny from all
</IfModule>