diff --git a/config/install/redirect.domain.yml b/config/install/redirect.domain.yml
new file mode 100644
index 0000000..08c7d6c
--- /dev/null
+++ b/config/install/redirect.domain.yml
@@ -0,0 +1,4 @@
+domain_redirects:
+  -
+    from: abc.example.org
+    to: www.example.org/abc
diff --git a/config/schema/redirect.schema.yml b/config/schema/redirect.schema.yml
index 2b10769..5dcc9ea 100644
--- a/config/schema/redirect.schema.yml
+++ b/config/schema/redirect.schema.yml
@@ -50,3 +50,18 @@ 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: config_object
+      label: 'Domain redirects'
+      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..0354581 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 redirect'
+    _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..3ca8b8b 100644
--- a/src/EventSubscriber/RedirectRequestSubscriber.php
+++ b/src/EventSubscriber/RedirectRequestSubscriber.php
@@ -123,6 +123,30 @@ class RedirectRequestSubscriber implements EventSubscriberInterface {
       return;
     }
 
+    // Redirect between domains.
+    $from_domain = $request->getUri();
+    $domains = \Drupal::config('redirect.domain')->get('domain_redirects');
+    $to_domain = NULL;
+    // Removes HTTP prefix.
+    if (strpos($from_domain, 'http://') !== FALSE) {
+      $from_domain = substr($from_domain, 7);
+    }
+    if (strpos($from_domain, 'https://') !== FALSE) {
+      $from_domain = substr($from_domain, 8);
+    }
+    // Checks if there is a redirect domain in the configuration.
+    foreach ($domains as $domain) {
+      if ($domain['from'] == $from_domain) {
+        $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..18557d9
--- /dev/null
+++ b/src/Form/RedirectDomainForm.php
@@ -0,0 +1,157 @@
+<?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;
+
+class RedirectDomainForm extends ConfigFormBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function __construct(ConfigFactoryInterface $config_factory) {
+    parent::__construct($config_factory);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container) {
+    return new static(
+      $container->get('config.factory')
+    );
+  }
+
+  /**
+   * {@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) {
+
+    $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 = \Drupal::config('redirect.domain')->get('domain_redirects')) {
+      foreach ($domain_redirects as $domain_redirect) {
+        $rows[] = [
+          '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') ?: 1); $i++) {
+      $rows[] = [
+        'from' => [
+          '#type' => 'textfield',
+        ],
+        'to' => [
+          '#type' => 'textfield',
+        ],
+      ];
+    }
+    $form['redirects'] += $rows;
+
+    $form['add'] = [
+      '#type' => 'submit',
+      '#value' => $this->t('Add another'),
+      '#submit' => ['::addAnotherSubmit'],
+      '#ajax' => [
+        'callback' => '::ajaxAddAnother',
+        'wrapper' => 'redirect-domain-wrapper',
+      ],
+    ];
+    $form['submit'] = [
+      '#type' => 'submit',
+      '#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) + 1);
+    $form_state->setRebuild(TRUE);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function validateForm(array &$form, FormStateInterface $form_state) {
+    parent::validateForm($form, $form_state);
+    // @todo Validate domain redirects.
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function submitForm(array &$form, FormStateInterface $form_state) {
+    $domain_redirects = [];
+    $domain_config = \Drupal::configFactory()->getEditable('redirect.domain');
+
+    if ($redirects = $form_state->getValues()['redirects']) {
+      foreach ($form_state->getValues()['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();
+  }
+}
diff --git a/src/Tests/GlobalRedirectTest.php b/src/Tests/GlobalRedirectTest.php
index fd17370..58db6db 100644
--- a/src/Tests/GlobalRedirectTest.php
+++ b/src/Tests/GlobalRedirectTest.php
@@ -211,4 +211,41 @@ 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]', 'abc.example.org');
+    $this->assertFieldByName('redirects[0][to]', 'www.example.org/abc');
+    $this->assertFieldByName('redirects[1][from]');
+    $this->assertFieldByName('redirects[1][to]');
+
+    // Add another field for new domain redirect.
+    $this->drupalPostAjaxForm(NULL, [], ['op' => t('Add another')]);
+
+    // Add two new domain redirects.
+    $edit = [
+      'redirects[1][from]' => 'foo.example.org',
+      'redirects[1][to]' => 'www.example.org/foo',
+      'redirects[2][from]' => 'bar.example.org',
+      'redirects[2][to]' => 'www.example.org/bar',
+    ];
+    $this->drupalPostForm(NULL, $edit, t('Save'));
+
+    // Check the new domain redirects.
+    $this->assertFieldByName('redirects[1][from]', 'foo.example.org');
+    $this->assertFieldByName('redirects[1][to]', 'www.example.org/foo');
+    $this->assertFieldByName('redirects[2][from]', 'bar.example.org');
+    $this->assertFieldByName('redirects[2][to]', 'www.example.org/bar');
+  }
 }
