diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index 82423558d0f..e4cb7cef7c0 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -161,7 +161,7 @@ function system_requirements($phase) {
'title' => t('Apache version'),
'value' => $apache_version_string,
'severity' => REQUIREMENT_ERROR,
- 'description' => t('The minimum version of Apache needed to run Drupal without mod_rewrite enabled is 2.2.16. See the enabling clean URLs page for more information on mod_rewrite.', [':link' => 'http://drupal.org/docs/8/clean-urls-in-drupal-8']),
+ 'description' => t('The minimum version of Apache needed to run Drupal without mod_rewrite enabled is 2.2.16. See the enabling clean URLs page for more information on mod_rewrite.', [':link' => 'https://www.drupal.org/docs/8/clean-urls-in-drupal-8']),
];
}
@@ -170,7 +170,7 @@ function system_requirements($phase) {
'title' => t('Clean URLs'),
'value' => t('Disabled'),
'severity' => REQUIREMENT_WARNING,
- 'description' => t('Your server is capable of using clean URLs, but it is not enabled. Using clean URLs gives an improved user experience and is recommended. Enable clean URLs', [':link' => 'http://drupal.org/docs/8/clean-urls-in-drupal-8']),
+ 'description' => t('Your server is capable of using clean URLs, but it is not enabled. Using clean URLs gives an improved user experience and is recommended. Enable clean URLs', [':link' => 'https://www.drupal.org/docs/8/clean-urls-in-drupal-8']),
];
}
}