I want to redirect the user if he/she types in the wrong folder name. So if they do:\[code\]www.domain.com/folder\[/code\]I want to redirect them to\[code\]www.domain.com/Folder\[/code\]So here's my htaccess code:\[code\]RedirectMatch 301 folder(.*) Folder/$1\[/code\]But this is not working so how do I fix this?