# Template Party CMS - STEP2 minimal routing
Options -MultiViews
RewriteEngine On

# 既存のファイル/ディレクトリはそのまま表示
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

# それ以外は index.php に委譲
RewriteRule ^index\.php$ - [L]
RewriteRule . index.php [L]
