Posted by Mitja Trampus on 10/30/05 21:02
draphael wrote:
> Hi,
>
> Is there a way to configure .htaccess so that requests for files ending in
> .htm are redirected to the same file name but with an extension of .html?
Use mod_rewrite or the simpler mod_alias.
I have very little experience with either, but I guess this
should work:
RedirectMatch permanent ^(.*)\.htm$ $1.html
Navigation:
[Reply to this message]
|