大体
RewriteEngine On RewriteBase /hoge/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /hoge/index.php [L]
となっているが
RewriteEngine On
RewriteBase /hoge/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /hoge/index.php [L]
としないとうまく動かないケースがあった。詳細は未確認。古いバージョンだからか?バグ?