diff --git plugins/views_plugin_display.inc plugins/views_plugin_display.inc
index de3df38..61c7236 100644
--- plugins/views_plugin_display.inc
+++ plugins/views_plugin_display.inc
@@ -166,7 +166,7 @@ class views_plugin_display extends views_plugin {
       'use_ajax' => array('use_ajax'),
       'items_per_page' => array('items_per_page', 'offset', 'use_pager', 'pager_element'),
       'use_pager' => array('items_per_page', 'offset', 'use_pager', 'pager_element'),
-      'use_more' => array('use_more', 'use_more_text'),
+      'use_more' => array('use_more', 'use_more_text', 'more_url'),
       'link_display' => array('link_display'),
       'distinct' => array('distinct'),
       'exposed_block' => array('exposed_block'),
@@ -341,6 +341,9 @@ class views_plugin_display extends views_plugin {
         'default' => 'more',
         'translatable' => TRUE,
       ),
+      'more_url' => array(
+        'default' => '',
+      ),
       'link_display' => array(
         'default' => '',
       ),
@@ -905,6 +908,12 @@ class views_plugin_display extends views_plugin {
           '#description' => t("The text to display for the more link."),
           '#default_value' => $this->get_option('use_more_text'),
         );
+        $form['more_url'] = array(
+          '#type' => 'textfield',
+          '#title' => t('More url'),
+          '#description' => t('What url should be used for the more link, this will override the link display setting above'),
+          '#default_value' => $this->get_option('more_url'),
+        );
         break;
       case 'distinct':
         $form['#title'] .= t('Display only distinct items, without duplicates.');
@@ -1491,6 +1500,7 @@ class views_plugin_display extends views_plugin {
       case 'use_more':
         $this->set_option($section, intval($form_state['values'][$section]));
         $this->set_option('use_more_text', $form_state['values']['use_more_text']);
+        $this->set_option('more_url', $form_state['values']['more_url']);
       case 'distinct':
         $this->set_option($section, $form_state['values'][$section]);
         break;
@@ -1659,6 +1669,9 @@ class views_plugin_display extends views_plugin {
           $url_options['query'] = $this->view->exposed_raw_input;
         }
         $theme = views_theme_functions('views_more', $this->view, $this->display);
+        if ($this->get_option('more_url')) {
+          $path = $this->get_option('more_url');
+        }
         $path = check_url(url($path, $url_options));
         return theme($theme, $path, $this->use_more_text());
       }
