Index: sites/all/modules/contrib/taxonomy_feed/views_plugin_style_taxonomy_feed.inc
===================================================================
--- sites/all/modules/contrib/taxonomy_feed/views_plugin_style_taxonomy_feed.inc	(revision 35665)
+++ sites/all/modules/contrib/taxonomy_feed/views_plugin_style_taxonomy_feed.inc	(revision )
@@ -30,6 +30,16 @@
             '#process' => array('views_process_dependency'),
             '#dependency' => array('edit-style-options-override' => array(FALSE)),
         );
+        $form['link_destination'] = array(
+            '#type' => 'radios',
+            '#title' => t('Link destination'),
+            '#default_value' => $this->options['link_destination'],
+            '#description' => t('The destination for the URI used in the term link'),
+            '#options' => array(
+                0 => t('Term feed page (taxonomy/term/x/0/feed)'),
+                1 => t('Term page (taxonomy/term/x)'),
+                2 => t('Term page URI')),
+        );
     }
 
     function render() {
@@ -50,7 +60,7 @@
           $this->namespaces = array_merge($this->namespaces, $element['namespace']);
           }
           } */
-
+//print '<pre>'.print_r($this,1).'</pre>';
         foreach ($this->view->result as $row) {
             $rows .= $this->row_plugin->render($row);
         }
Index: sites/all/modules/contrib/taxonomy_feed/views_plugin_row_taxonomy_term.inc
===================================================================
--- sites/all/modules/contrib/taxonomy_feed/views_plugin_row_taxonomy_term.inc	(revision 35665)
+++ sites/all/modules/contrib/taxonomy_feed/views_plugin_row_taxonomy_term.inc	(revision )
@@ -21,7 +21,19 @@
         $term = taxonomy_get_term($row->tid);
         $item = new stdClass();
         $item->title = $term->name;
+
+        // determine link destination
+        switch ($this->view->display_handler->options['style_options']['link_destination']) {
+            case 0: // taxonomy/term/1/0/feed
-        $item->link = url('taxonomy/term/' . $term->tid . '/0/feed', array('absolute' => TRUE));
+                $item->link = url('taxonomy/term/' . $term->tid . '/0/feed', array('absolute' => TRUE));
+                break;
+            case 1: // taxonomy/term/1  which will end up as an alias if there is one
+                $item->link = url('taxonomy/term/' . $term->tid, array('absolute' => TRUE));
+                break;
+            case 2: // same as above but a uri instead of a complete url
+                $item->link = 'taxonomy/term/' . $term->tid;
+                break;
+        }
 
         $item->description = $term->description;
 
