# ============================================================
#  Frames CMS ルート設定（任意・無くても動きます）
# ============================================================

# SQLite/ログ等の直接ダウンロードを禁止
<FilesMatch "\.(sqlite3?|db|json|log)$">
  <IfModule mod_authz_core.c>
    Require all denied
  </IfModule>
  <IfModule !mod_authz_core.c>
    Order allow,deny
    Deny from all
  </IfModule>
</FilesMatch>

# ディレクトリ一覧の無効化
<IfModule mod_autoindex.c>
  Options -Indexes
</IfModule>

# 文字コード
AddDefaultCharset UTF-8
