1
There was an old site and all its Urls were changed.
A URL that was well found in Google was:
meudominio.com/datacenters
Now I want to redirect this URL to:
meudominio.com/data-centers
In htaccess I did:
redirect 301 /datacenters /data-centers
But it won’t, what I’m doing wrong?
It will not.... I have seen this example before. The browser URL remains the same (the one that no longer exists)
– caiocafardo
@caiocafardo give a look at the second example. Look if it works
Redirect 301 /pagina-antiga.html http://meudominio.com/folder/
– hugocsl
Also not... the right thing was anything I put '/test' should redirect to the URL that is after, right?
– caiocafardo
Here is a super short article, with only direct examples. If that doesn’t work, I won’t know how to help you... https://css-tricks.com/snippets/htaccess/301-redirects/
– hugocsl