2
How do I do in htacess redirect 301 ?
But in specific urls, I changed my domain, and migrated the posts for example:
meusite.com.br/article/article name
meusite2.com.br/article/article name
Make a 301 redirect only when you have /article/
Ai when personal who access the old url to see an article for example, goes directly pro meusite2.com.br
it is possible?
Try it like this:
ErrorDocument 301 http://meusite2.com.br
– Francisco