I'm trying to do a 301 redirect from one site to another - xyz12.com -> xyz.com
This is my htaccess setup: (removed www. in this example so it doesn't link)
Options +FollowSymLinks
RewriteEngine on
Redirect 301 /good-computers123.html http:/xyz.com/good-computers
Redirect 301 /fishing64.html http:/xyz.com/fishing
Currently, this is how it's redirecting:
xyz12.com/good-computers123.html ->
xyz.com/good-computers123 (which is wrong)
The problem is the slug. The new website does not have the same name for products.
The correct redirect would link from:
abc12.com/good-computers123 ->
abc.com/good-computers
Site is run on magento if that helps
Does anyone have a solution? Appriciate all ideas and input. Thanks for helping!
This is my htaccess setup: (removed www. in this example so it doesn't link)
Options +FollowSymLinks
RewriteEngine on
Redirect 301 /good-computers123.html http:/xyz.com/good-computers
Redirect 301 /fishing64.html http:/xyz.com/fishing
Currently, this is how it's redirecting:
xyz12.com/good-computers123.html ->
xyz.com/good-computers123 (which is wrong)
The problem is the slug. The new website does not have the same name for products.
The correct redirect would link from:
abc12.com/good-computers123 ->
abc.com/good-computers
Site is run on magento if that helps
Does anyone have a solution? Appriciate all ideas and input. Thanks for helping!