# PrestaShop 9.1+ ships a modules/.htaccess that denies *.json across all modules.
# The files in this directory (phones.json, countries.json) are public static
# datasets fetched by the storefront JS, so re-allow them here (deeper directory
# wins in the Apache config merge).
<FilesMatch "\.json$">
    # Apache 2.2
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Allow from all
    </IfModule>

    # Apache 2.4
    <IfModule mod_authz_core.c>
        Require all granted
    </IfModule>
</FilesMatch>
