1
0
app/system/.htaccess
2022-05-18 12:31:00 +03:00

13 lines
203 B
ApacheConf

# 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>