diff --git a/core/modules/views/views_ui/lib/Drupal/views_ui/ViewAddFormController.php b/core/modules/views/views_ui/lib/Drupal/views_ui/ViewAddFormController.php
index ea0bf11..7ef08e6 100644
--- a/core/modules/views/views_ui/lib/Drupal/views_ui/ViewAddFormController.php
+++ b/core/modules/views/views_ui/lib/Drupal/views_ui/ViewAddFormController.php
@@ -161,6 +161,16 @@ public function submit(array $form, array &$form_state) {
     $view->save();
 
     $form_state['redirect'] = array('admin/structure/views/view/' . $view->get('name'));
+
+    if (!empty($view->get('executable')->displayHandlers['page_1'])) {
+      $display = $view->get('executable')->displayHandlers['page_1'];
+      if ($display->hasPath()) {
+        $path = $display->getOption('path');
+        if (strpos($path, '%') === FALSE) {
+          drupal_set_message(t('Go straight to your view: !path', array('!path' => l($path, $path))));
+        }
+      }
+    }
   }
 
   /**
