How do you add a redirect link from a product to another website?
I want to be able to click on a product and instead of bringing me to that products page I want it to bring me to another website.
You wouldn't use the Magento URL management for this. You would put this in your htaccess file
RewriteRule ^category/product.html$ http://www.otherdomain.com/product.html [R=301]
Make sure to put it under
RewriteEngine On
I think you want to look into URL Rewrite Management under Catalog menu item. There you can create custom redirects without having to deal with code or web server configurations.
I only want it for one product. How do I code it to have one product redirect to another website and the others stay how they are?
You can easily do this on a URL basis via your .htaccess file. See the instructions by kab8609 above.
We need to edit htaccess file on Magento Route. We need to put following code for redirecting the product URL to another Website.
RewriteEngine On
Redirect 301 /category/product.html/ http://www.demo.com/