diff --git a/redirect.module b/redirect.module
index bf4d4f9..d895d58 100644
--- a/redirect.module
+++ b/redirect.module
@@ -21,6 +21,8 @@ use Drupal\Core\Language\Language;
 use Drupal\Core\Routing\RouteMatchInterface;
 use Drupal\Core\Url;
 use Drupal\Core\Site\Settings;
+use Drupal\node\Entity\NodeType;
+use Drupal\node\NodeTypeInterface;
 use Drupal\redirect\Entity\Redirect;
 use Symfony\Component\Routing\Exception\RouteNotFoundException;
 
@@ -500,5 +502,24 @@ function redirect_form_node_form_alter(&$form, FormStateInterface $form_state, $
         '#suffix' => '</p>',
       ];
     }
+
+    $type = NodeType::load($node->getType());
+    $current_page = Url::fromRoute('<current>');
+    $form['url_redirects']['actions'] = [
+      '#theme' => 'links',
+      '#links' => [],
+      '#attributes' => ['class' => ['action-links']],
+    ];
+    $form['url_redirects']['actions']['#links']['add'] = [
+      'title' => t('Add URL redirect to this @node_type', ['@node_type' => $type->label()]),
+      'url' => Url::fromRoute('redirect.add', [
+        'redirect' => "/node/$nid",
+        'destination' => $current_page->toString(),
+      ]),
+      'attributes' => [
+        'class' => 'button',
+        'target' => '_blank',
+      ],
+    ];
   }
 }
