diff --git a/core/modules/link/src/Plugin/migrate/field/d6/LinkField.php b/core/modules/link/src/Plugin/migrate/field/d6/LinkField.php
index 0d03656..182cc48 100644
--- a/core/modules/link/src/Plugin/migrate/field/d6/LinkField.php
+++ b/core/modules/link/src/Plugin/migrate/field/d6/LinkField.php
@@ -39,7 +39,7 @@ public function getFieldFormatterMap() {
    */
   public function processFieldValues(MigrationInterface $migration, $field_name, $data) {
     $process = [
-      'plugin' => 'd6_field_link',
+      'plugin' => 'field_link',
       'source' => $field_name,
     ];
     $migration->mergeProcessOfProperty($field_name, $process);
diff --git a/core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php b/core/modules/link/src/Plugin/migrate/process/FieldLink.php
similarity index 47%
rename from core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php
rename to core/modules/link/src/Plugin/migrate/process/FieldLink.php
index 4badcb6..b325e1d 100644
--- a/core/modules/link/src/Plugin/migrate/process/d6/FieldLink.php
+++ b/core/modules/link/src/Plugin/migrate/process/FieldLink.php
@@ -1,6 +1,6 @@
 <?php
 
-namespace Drupal\link\Plugin\migrate\process\d6;
+namespace Drupal\link\Plugin\migrate\process;
 
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\migrate\Plugin\MigrationInterface;
@@ -11,7 +11,7 @@
 
 /**
  * @MigrateProcessPlugin(
- *   id = "d6_field_link"
+ *   id = "field_link"
  * )
  */
 class FieldLink extends ProcessPluginBase implements ContainerFactoryPluginInterface {
@@ -37,10 +37,10 @@ public static function create(ContainerInterface $container, array $configuratio
   }
 
   /**
-   * Turn a Drupal 6 URI into a Drupal 8-compatible format.
+   * Turn a Drupal 6/7 URI into a Drupal 8-compatible format.
    *
    * @param string $uri
-   *   The 'url' value from Drupal 6.
+   *   The 'url' value from Drupal 6/7.
    *
    * @return string
    *   The Drupal 8-compatible URI.
@@ -57,6 +57,40 @@ protected function canonicalizeUri($uri) {
     if (strpos($uri, '<front>') === 0) {
       $uri = substr($uri, strlen('<front>'));
     }
+    else {
+      // A list of unicode-encoded characters that could be included in a uri.
+      $link_ichars = '¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿŒœŠšŸŽžƒ';
+
+      // Pattern specific to internal links.
+      $internal_pattern = "/^(?:[a-z0-9" . $link_ichars . "_\-+\[\] ]+)";
+
+      $directories = "(?:\/[a-z0-9" . $link_ichars . "_\-\.~+%=&,$'#!():;*@\[\]]*)*";
+      // Yes, four backslashes == a single backslash.
+      $query = "(?:\/?\?([?a-z0-9" . $link_ichars . "+_|\-\.~\/\\\\%=&,$'():;*@\[\]{} ]*))";
+      $anchor = "(?:#[a-z0-9" . $link_ichars . "_\-\.~+%=&,$'():;*@\[\]\/\?]*)";
+
+      // The rest of the path for a standard URL.
+      $end = $directories . '?' . $query . '?' . $anchor . '?' . '$/i';
+
+      if (!preg_match($internal_pattern . $end, $uri)) {
+        $allowed_protocols = ['http', 'https', 'ftp', 'news', 'nntp', 'telnet', 'mailto', 'irc', 'ssh', 'sftp', 'webcal'];
+        $link_domains = 'aero|arpa|asia|biz|com|cat|coop|edu|gov|info|int|jobs|mil|museum|name|nato|net|org|pro|travel|mobi|local';
+
+        // Starting a parenthesis group with (?: means that it is grouped, but is not captured
+        $protocol = '((?:' . implode("|", $allowed_protocols) . '):\/\/)';
+        $authentication = "(?:(?:(?:[\w\.\-\+!$&'\(\)*\+,;=" . $link_ichars . "]|%[0-9a-f]{2})+(?::(?:[\w" . $link_ichars . "\.\-\+%!$&'\(\)*\+,;=]|%[0-9a-f]{2})*)?)?@)";
+        $domain = '(?:(?:[a-z0-9' . $link_ichars . ']([a-z0-9' . $link_ichars . '\-_\[\]])*)(\.(([a-z0-9' . $link_ichars . '\-_\[\]])+\.)*(' . $link_domains . '|[a-z]{2}))?)';
+        $ipv4 = '(?:[0-9]{1,3}(\.[0-9]{1,3}){3})';
+        $ipv6 = '(?:[0-9a-fA-F]{1,4}(\:[0-9a-fA-F]{1,4}){7})';
+        $port = '(?::([0-9]{1,5}))';
+
+        // Pattern specific to external links.
+        $external_pattern = '/^' . $protocol . '?' . $authentication . '?(' . $domain . '|' . $ipv4 . '|' . $ipv6 . ' |localhost)' . $port . '?';
+        if (preg_match($external_pattern . $end, $uri)) {
+          return 'http://' . $uri;
+        }
+      }
+    }
 
     // Add the internal: scheme and ensure a leading slash.
     return 'internal:/' . ltrim($uri, '/');
@@ -67,7 +101,7 @@ protected function canonicalizeUri($uri) {
    */
   public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
     $attributes = unserialize($value['attributes']);
-    // Drupal 6 link attributes might be double serialized.
+    // Drupal 6/7 link attributes might be double serialized.
     if (!is_array($attributes)) {
       $attributes = unserialize($attributes);
     }
diff --git a/core/modules/link/tests/src/Unit/Plugin/migrate/field/d6/LinkFieldTest.php b/core/modules/link/tests/src/Unit/Plugin/migrate/field/d6/LinkFieldTest.php
index 645e3e1..1e1b6bd 100644
--- a/core/modules/link/tests/src/Unit/Plugin/migrate/field/d6/LinkFieldTest.php
+++ b/core/modules/link/tests/src/Unit/Plugin/migrate/field/d6/LinkFieldTest.php
@@ -50,7 +50,7 @@ public function testProcessFieldValues() {
     $this->plugin->processFieldValues($this->migration, 'somefieldname', []);
 
     $expected = [
-      'plugin' => 'd6_field_link',
+      'plugin' => 'field_link',
       'source' => 'somefieldname',
     ];
     $this->assertSame($expected, $this->migration->getProcess());
diff --git a/core/modules/link/tests/src/Unit/Plugin/migrate/process/d6/FieldLinkTest.php b/core/modules/link/tests/src/Unit/Plugin/migrate/process/d6/FieldLinkTest.php
index 4b4eda2..55f72ca 100644
--- a/core/modules/link/tests/src/Unit/Plugin/migrate/process/d6/FieldLinkTest.php
+++ b/core/modules/link/tests/src/Unit/Plugin/migrate/process/d6/FieldLinkTest.php
@@ -50,6 +50,22 @@ public function canonicalizeUriDataProvider() {
         'scheme:test',
         'scheme:test',
       ],
+      'Absolute URL with protocol prefix' => [
+        'http://www.google.com',
+        'http://www.google.com',
+      ],
+      'Absolute URL without protocol prefix' => [
+        'www.yahoo.com',
+        'http://www.yahoo.com',
+      ],
+      'Absolute URL without protocol prefix nor www' => [
+        'yahoo.com',
+        'http://yahoo.com',
+      ],
+      'Absolute URL with non-standard characters' => [
+        'http://www.ßÀÑÐ¥ƒå¢ë.com',
+        'http://www.ßÀÑÐ¥ƒå¢ë.com',
+      ],
     ];
   }
 
