## set default server charset
AddDefaultCharset UTF-8

## folder listing access control
Options All -Indexes

## sitemap and atom rewrite
RewriteEngine On
RewriteRule ^sitemap.xml$ sitemap/sitemap.xml [L]
RewriteRule ^/internal_data/atom/(.*) /atom$1 [L]

## deny access to git folder
RedirectMatch 404 /\\.git(/|$)

## deny access to system files
<FilesMatch "\.(.*sql|tpl|db|inc|log|md|env)|(config|common).php$">
Require all denied
</FilesMatch>