# Zalo module security
Options -Indexes

# Protect all PHP files from direct access
<FilesMatch "\.php$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Allow access to usage file
<Files "USAGE.txt">
    Order Allow,Deny
    Allow from all
</Files>

