Options All -Indexes

<Files ~ "\.(env|json|config.js|md|gitignore|gitattributes|lock|log|mustache)$">
    Order allow,deny
    Deny from all
</Files>

<IfModule mod_rewrite.c>
	Options +FollowSymlinks
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?route=$1 [QSA,L]

    RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</ifModule>

<IfModule !mod_rewrite.c>
    ErrorDocument 404 index.php
</IfModule>
