Redirect an old URL to the new one with htaccess

I need to redirect viewers that enter my website from an old URL to the new one. I am trying to do it via htaccess, but I haven’t found the key yet.

The olf url is:

www.anykindofwebsite.org/contact/

And I want it to be redirected to:

www.anykindofwebsite.org/en/contact/

I am trying with the following code with no result:

RedirectMatch 301 ^contacto/$ es/contacto/

This website should help http://dk.co.nz/seo

@egoicantero: do you just want to redirect a single URL? If so, this should work:

Redirect 301 /contact/ /en/contact/
2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.