1
I need to do some 301 redirects of urls
of my website that has changed and is in Ubdomain, how do I make these changes in htaccess
?
Before my site accessed: www.meusite.com.br/contact
Now it looks like this: www.meusite.com.br/site/contact
1
I need to do some 301 redirects of urls
of my website that has changed and is in Ubdomain, how do I make these changes in htaccess
?
Before my site accessed: www.meusite.com.br/contact
Now it looks like this: www.meusite.com.br/site/contact
0
I got through the RedirectMatch 301
there remained
RedirectMatch 301 contato/ http://www.meusite.com.br/site/contato
Browser other questions tagged htaccess url redirecting
You are not signed in. Login or sign up in order to post.
Have you tried that:
Redirect 301 /contato http://meusite.com.br/site/contato/
?– viana
Yes, it’s not working
– Rafael Castro