Hi,
1. Create a custom category field via the menu Display>Custom fields.
2. In each category enter the link of the category in the custom field.
3. In the file "listing_img_title" of the view "category" (if you're displaying your listing with a div layout and a "image and title" item box layout), that you can edit via the menu Display>Views, just change the line:
<?php $link = $this->getLink($this->row->category_id,$this->row->alias);?>
to:
<?php $link = $this->row->LINK;?>
where LINK is replaced by the column name of your custom field.
4. Enjoy.