index.html
, вероятно, используется по умолчанию в вашем DirectoryIndex и также соответствует www.url.se
.
Замените правило RedirectMatch на правило ниже в вашем файле .htaccess, чтобы исправить
RewriteEngine On
RewriteBase /
#redirect all html file in /cat/ to just / directory
RewriteCond %{REQUEST_URI} ^/cat/(.+)\.html$
RewriteRule . /%1/ [L,R=301]
#apply the next rule for any file except index.html
RewriteCond %{REQUEST_URI} !^/index.html$ [NC]
RewriteRule (.+)\.html /$1 [L,R=301]