どんなURLでもindex.phpにリダイレクトする

PHPでシンプルなコントローラーを作るためにやったことのメモ やりたいことはどんなURLでアクセスしてもindex.phpにリダイレクトさせること .htaccessの記述 <IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.ph</ifmodule>…