index.php ページを非表示にして、ドメインだけを表示したいと思います。
これは .htaccess で可能ですか?
RewriteRule ^index\.php/?$ / [L,R=301,NC]
また試しました:
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.php HTTP/
RewriteRule ^index.php$ http://example.com/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
index.php は引き続き表示されます