diff --git a/core/modules/path/path.module b/core/modules/path/path.module
index 1d638ad..6bb6028 100644
--- a/core/modules/path/path.module
+++ b/core/modules/path/path.module
@@ -181,6 +181,16 @@ function path_form_element_validate($element, &$form_state, $complete_form) {
     if ($query->execute()->fetchField()) {
       form_error($element, t('The alias is already in use.'));
     }
+
+    // Ensure that the alias does not explicitly override a menu_router item.
+    $query = db_select('menu_router')
+      ->condition('path', $path['alias']);
+    $query->addExpression('1');
+    $query->range(0, 1);
+
+    if ($query->execute()->fetchField()) {
+      form_error($element, t('The alias is already in use.'));
+    }
   }
 }
 
