# Deny direct web access to the module source files. PHP files are only
# meant to be loaded through the PrestaShop dispatcher, never directly.
<IfModule mod_authz_core.c>
    <FilesMatch "\.(php|tpl|md)$">
        Require all denied
    </FilesMatch>
</IfModule>
<IfModule !mod_authz_core.c>
    <FilesMatch "\.(php|tpl|md)$">
        Order allow,deny
        Deny from all
    </FilesMatch>
</IfModule>
