Здравствуйте, есть .htaccess файл, его содержимое:
RewriteEngine on
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^.]+)\.html\ HTTP
RewriteRule ^([^.]+)\.html$ /$1 [R=301,L]
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
RewriteCond %{REQUEST_fileNAME} !-d
RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule (.*) /$1.html
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
RewriteRule ^index\.html$
http://%{HTTP_HOST}/ [R=301,L]
Хвосты в виде .html убираются, но на главной странице всё ещё остаётся /index
Как должен выглядеть итоговый .htaccess файл, чтобы index.html тоже убирался?