# URL 重写 & 安全

# 禁止目录列表
Options -Indexes

# 禁止访问敏感文件
<FilesMatch "\.(json|md|lock|sql|log)$">
    Deny from all
</FilesMatch>

# 禁止访问 .git
RedirectMatch 404 /\.git

# 默认字符集
AddDefaultCharset UTF-8
