I read a lot on 301 redirects of full domains, but couldn’t get how to exactly change an existing path to a new one.
Here is an example:
site.com/cars to site.com/motobikes
And:
site.com/cars/tires to sote.com/motobikes/(variable ex. Berlin, Paris)/tires
How can I accomplish this task?
2
Answers
You can make a redirect like this way in PHP
Or you can use a .htaccess file
Redirect 301 /cars http://example.com/motobikes
Try this:
And: