--- modules/views/src/Form/ViewsForm.php	(revision )
+++ modules/views/src/Form/ViewsForm.php	(revision )
@@ -157,7 +157,12 @@
     $query = UrlHelper::filterQueryParameters($query, [], '');

     $options = ['query' => $query];
-    $form['#action'] = $view->hasUrl() ? $view->getUrl()->setOptions($options)->toString() : Url::fromRoute('<current>')->setOptions($options)->toString();
+    if (isset($view->override_path)) {
+      $form['#action'] = $view->override_path;
+    }
+    else {
+      $form['#action'] = $view->hasUrl() ? $view->getUrl()->setOptions($options)->toString() : Url::fromRoute('<current>')->setOptions($options)->toString();
+    }
     // Tell the preprocessor whether it should hide the header, footer, pager,
     // etc.
     $form['show_view_elements'] = [
