diff --git a/core/modules/views/lib/Drupal/views/Plugin/Core/Entity/View.php b/core/modules/views/lib/Drupal/views/Plugin/Core/Entity/View.php
index 6e65758..8b1b447 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/Core/Entity/View.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/Core/Entity/View.php
@@ -320,9 +320,11 @@ public function getPaths() {
       $all_paths[] = t('Edit this view to add a display.');
     }
     else {
-      foreach ($this->display as $display) {
-        if (!empty($display['display_options']['path'])) {
-          $path = $display['display_options']['path'];
+      $executable = $this->get('executable');
+      $executable->initDisplay();
+      foreach ($executable->displayHandlers as $display) {
+        if ($display->hasPath()) {
+          $path = $display->getPath();
           if ($this->status() && strpos($path, '%') === FALSE) {
             $all_paths[] = l('/' . $path, $path);
           }
diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DefaultViewsTest.php b/core/modules/views_ui/lib/Drupal/views_ui/Tests/DefaultViewsTest.php
index 0e2ec93..f397979 100644
--- a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DefaultViewsTest.php
+++ b/core/modules/views_ui/lib/Drupal/views_ui/Tests/DefaultViewsTest.php
@@ -17,7 +17,7 @@ class DefaultViewsTest extends UITestBase {
    *
    * @var array
    */
-  public static $testViews = array('test_view_status');
+  public static $testViews = array('test_view_status', 'test_page_display_menu');
 
   public static function getInfo() {
     return array(
@@ -158,6 +158,16 @@ function testSplitListing() {
   }
 
   /**
+   * Tests that page displays show the correct path.
+   */
+  public function testPathDestination() {
+    $this->drupalGet('admin/structure/views');
+    $this->assertLinkByHref('test_page_display_menu');
+    $this->assertNoLinkByHref('test_page_display_menu/default');
+    $this->assertLinkByHref('test_page_display_menu/local');
+  }
+
+  /**
    * Click a link to perform an operation on a view.
    *
    * In general, we expect lots of links titled "enable" or "disable" on the
