diff --git a/config/install/redirect.domain.yml b/config/install/redirect.domain.yml
new file mode 100644
index 0000000..e69de29
diff --git a/config/schema/redirect.schema.yml b/config/schema/redirect.schema.yml
index 2b10769..263e0ae 100644
--- a/config/schema/redirect.schema.yml
+++ b/config/schema/redirect.schema.yml
@@ -50,3 +50,20 @@ redirect.settings:
 action.configuration.redirect_delete_action:
   type: action_configuration_default
   label: 'Delete redirect configuration'
+
+redirect.domain:
+  type: config_object
+  label: 'Redirect domains'
+  mapping:
+    domain_redirects:
+      type: sequence
+      label: 'Domain redirects'
+      sequence:
+        type: mapping
+        mapping:
+          from:
+            type: string
+            label: 'From domain'
+          to:
+            type: string
+            label: 'To domain'
diff --git a/redirect.links.task.yml b/redirect.links.task.yml
index 4216cbc..d521f1d 100644
--- a/redirect.links.task.yml
+++ b/redirect.links.task.yml
@@ -8,3 +8,9 @@ redirect.settings:
   base_route: redirect.list
   title: Settings
   weight: 50
+
+redirect.domain_redirect:
+  title: 'Domain redirects'
+  base_route: redirect.list
+  route_name: redirect.domain_redirect
+  weight: 60
diff --git a/redirect.routing.yml b/redirect.routing.yml
index c7a9e0c..26fcb45 100644
--- a/redirect.routing.yml
+++ b/redirect.routing.yml
@@ -56,3 +56,11 @@ redirect.settings:
 #redirect.devel_generate:
 #  requirements:
 #    _module_dependencies: 'devel'
+
+redirect.domain_redirect:
+  path: '/admin/config/search/redirect/domain'
+  defaults:
+    _title: 'Domain redirects'
+    _form: '\Drupal\redirect\Form\RedirectDomainForm'
+  requirements:
+    _permission: 'administer redirects'
\ No newline at end of file
diff --git a/src/EventSubscriber/RedirectRequestSubscriber.php b/src/EventSubscriber/RedirectRequestSubscriber.php
index 4b8821a..2855740 100644
--- a/src/EventSubscriber/RedirectRequestSubscriber.php
+++ b/src/EventSubscriber/RedirectRequestSubscriber.php
@@ -73,6 +73,13 @@ class RedirectRequestSubscriber implements EventSubscriberInterface {
   protected $pathProcessor;
 
   /**
+   * Domain redirect configuration.
+   *
+   * @var \Drupal\Core\Config\Config
+   */
+  protected $domainConfig;
+
+  /**
    * Constructs a \Drupal\redirect\EventSubscriber\RedirectRequestSubscriber object.
    *
    * @param \Drupal\redirect\RedirectRepository $redirect_repository
@@ -96,6 +103,7 @@ class RedirectRequestSubscriber implements EventSubscriberInterface {
     $this->redirectRepository = $redirect_repository;
     $this->languageManager = $language_manager;
     $this->config = $config->get('redirect.settings');
+    $this->domainConfig = $config->get('redirect.domain');
     $this->aliasManager = $alias_manager;
     $this->moduleHandler = $module_handler;
     $this->entityManager = $entity_manager;
@@ -123,6 +131,27 @@ class RedirectRequestSubscriber implements EventSubscriberInterface {
       return;
     }
 
+    // Redirect between domains configuration.
+    if ($this->domainConfig) {
+      $domains = $this->domainConfig->get('domain_redirects');
+      if (!empty($domains)) {
+        $from_domain = $request->getHost() . $request->getRequestUri();
+        $to_domain = NULL;
+        // Checks if there is a redirect domain in the configuration.
+        foreach ($domains as $domain) {
+          if (strpos($domain['from'], $from_domain) !== FALSE) {
+            $to_domain = $domain['to'];
+            break;
+          }
+        }
+        if ($to_domain) {
+          $response = new TrustedRedirectResponse($to_domain);
+          $event->setResponse($response);
+          return;
+        }
+      }
+    }
+
     // Get URL info and process it to be used for hash generation.
     parse_str($request->getQueryString(), $request_query);
 
diff --git a/src/Form/RedirectDomainForm.php b/src/Form/RedirectDomainForm.php
new file mode 100644
index 0000000..629168b
--- /dev/null
+++ b/src/Form/RedirectDomainForm.php
@@ -0,0 +1,154 @@
+<?php
+
+namespace Drupal\redirect\Form;
+
+use Drupal\Core\Config\ConfigFactoryInterface;
+use Drupal\Core\Form\ConfigFormBase;
+use Drupal\Core\Form\FormStateInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * Provides a redirect domain configuration form.
+ */
+class RedirectDomainForm extends ConfigFormBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getFormId() {
+    return 'form_redirect_domain_form';
+  }
+
+  /**
+  * {@inheritdoc}
+  */
+  protected function getEditableConfigNames() {
+    return [
+      'redirect.domain',
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildForm(array $form, FormStateInterface $form_state) {
+    if ($form_state->get('maximum_domains') === NULL) {
+      $form_state->set('maximum_domains', 1);
+    }
+
+    $form['redirects'] = [
+      '#type' => 'table',
+      '#tree' => TRUE,
+      '#header' => [
+        $this->t('From domain'),
+        $this->t('To domain')
+      ],
+      '#prefix' => '<div id="redirect-domain-wrapper">',
+      '#suffix' => '</div>',
+    ];
+
+    $rows = [];
+    // Obtain domain redirects from configuration.
+    if ($domain_redirects = $this->config('redirect.domain')->get('domain_redirects')) {
+      foreach ($domain_redirects as $domain_redirect) {
+        $form['redirects'][] = [
+          'from' => [
+            '#type' => 'textfield',
+            '#value' => $domain_redirect['from'],
+          ],
+          'to' => [
+            '#type' => 'textfield',
+            '#value' => $domain_redirect['to'],
+          ],
+        ];
+      }
+    }
+
+    // Fields for the new domain redirects.
+    for ($i = 0; $i < $form_state->get('maximum_domains'); $i++) {
+      $form['redirects'][] = [
+        'from' => [
+          '#type' => 'textfield',
+        ],
+        'to' => [
+          '#type' => 'textfield',
+        ],
+      ];
+    }
+
+    $form['add'] = [
+      '#type' => 'submit',
+      '#value' => $this->t('Add another'),
+      '#submit' => ['::addAnotherSubmit'],
+      '#ajax' => [
+        'callback' => '::ajaxAddAnother',
+        'wrapper' => 'redirect-domain-wrapper',
+      ],
+    ];
+    $form['submit'] = [
+      '#type' => 'submit',
+      '#button_type' => 'primary',
+      '#value' => $this->t('Save'),
+    ];
+    return $form;
+  }
+
+  /**
+   * Ajax callback for adding another domain redirect.
+   *
+   * @param array $form
+   *   The form structure.
+   * @param \Drupal\Core\Form\FormStateInterface $form_state
+   *   The form state.
+   *
+   * @return array
+   *   The new domain redirect form part.
+   */
+  public function ajaxAddAnother(array $form, FormStateInterface $form_state) {
+    return $form['redirects'];
+  }
+
+  /**
+   * Submit callback for adding a new domain field.
+   */
+  public function addAnotherSubmit(array $form, FormStateInterface $form_state) {
+    $form_state->set('maximum_domains', $form_state->get('maximum_domains') + 1);
+    $form_state->setRebuild(TRUE);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function validateForm(array &$form, FormStateInterface $form_state) {
+    parent::validateForm($form, $form_state);
+    if ($redirects = $form_state->getValue('redirects')) {
+      foreach ($redirects as $redirect) {
+        if (strpos($redirect['from'], 'http://') !==FALSE || strpos($redirect['from'], 'https://') !== FALSE || strpos($redirect['to'], 'http://') !==FALSE || strpos($redirect['to'], 'https://') !== FALSE) {
+          $form_state->setErrorByName('redirects', t('No protocol should be included in the redirect domain.'));
+        }
+      }
+    }
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    $domain_redirects = [];
+    $domain_config = $this->configFactory()->getEditable('redirect.domain');
+
+    if ($redirects = $form_state->getValue('redirects')) {
+      foreach ($redirects as $redirect) {
+        if (!empty($redirect['from']) && !empty($redirect['to'])) {
+          $domain_redirects[] = [
+            'from' => $redirect['from'],
+            'to' => $redirect['to'],
+          ];
+        }
+      }
+    }
+    $domain_config->set('domain_redirects', $domain_redirects);
+    $domain_config->save();
+    drupal_set_message(t('The domain redirects have been saved.'));
+  }
+}
diff --git a/src/Tests/GlobalRedirectTest.php b/src/Tests/GlobalRedirectTest.php
index fd17370..711a36e 100644
--- a/src/Tests/GlobalRedirectTest.php
+++ b/src/Tests/GlobalRedirectTest.php
@@ -211,4 +211,39 @@ class GlobalRedirectTest extends WebTestBase {
 
     $this->assertEqual($headers[0][':status'], $expected_ending_status);
   }
+
+  /**
+   * Tests domain redirect.
+   */
+  public function testDomainRedirect() {
+    $user = $this->drupalCreateUser([
+      'administer site configuration',
+      'access administration pages',
+      'administer redirects'
+    ]);
+    $this->drupalLogin($user);
+    $this->drupalGet('/admin/config/search/redirect/domain');
+
+    // Assert that there are 2 domain redirect fields.
+    $this->assertFieldByName('redirects[0][from]');
+    $this->assertFieldByName('redirects[0][to]');
+
+    // Add another field for new domain redirect.
+    $this->drupalPostAjaxForm(NULL, [], ['op' => t('Add another')]);
+
+    // Add two new domain redirects.
+    $edit = [
+      'redirects[0][from]' => 'foo.example.org',
+      'redirects[0][to]' => 'www.example.org/foo',
+      'redirects[1][from]' => 'bar.example.org',
+      'redirects[1][to]' => 'www.example.org/bar',
+    ];
+    $this->drupalPostForm(NULL, $edit, t('Save'));
+
+    // Check the new domain redirects.
+    $this->assertFieldByName('redirects[0][from]', 'foo.example.org');
+    $this->assertFieldByName('redirects[0][to]', 'www.example.org/foo');
+    $this->assertFieldByName('redirects[1][from]', 'bar.example.org');
+    $this->assertFieldByName('redirects[1][to]', 'www.example.org/bar');
+  }
 }
