Magento – How to create custom link for category

categorymagento-1.9

I have to create category in Magento backend, it display to front end, can it possible if category name is Ex. like Football, and when i click it football category, it redirect to another sites link?

Ex. Category 1 Is Football -> Site 1 Name Like Ex. www.football.com and when click Football category its Redirect It Site 2 Like Ex. www.hockey.com

Pls Help And Suggest Some Ideas.

Best Answer

I dont know why you want to do this, but you can achieve by .htaccess

use 301 redirect rule for that

<IfModule mod_rewrite.c>
  #301 redirect
  redirect 301 oldURL NEWURL
</IfModule>