Options -Indexes -MultiViews
<IfModule mod_authz_core.c>
  <FilesMatch "(?i)\.json$">
    Require all denied
  </FilesMatch>
</IfModule>
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_URI} \.json$ [NC]
  RewriteRule ^ - [F,L]
</IfModule>
