I have this rewrite rule in a .htaccess file:
RewriteRule ^Old.English-English$ /Web/Majstro/bdict.php?gebrTaal=eng&bronTaal=ang&doelTaal=eng&index=Y [NC,L]
For some reason the regular expression in the file does not match the string "Old English-English", although it does match when tested in PHP.
However, if I change the regular expression to ^Old.Englisi-English$, it will match to "Old Englisi-English", and the same happens when the "h" of "Old English" is replaced by any other letter.
Similar rewrite rules with regular expressions like ^West.Frisian-English$ have never caused problems, so why does this one not work?