diff --git a/config/config.sample.php b/config/config.sample.php
index 2722865c8e5f8b246919923d0905202473546d21..8b714a1763ce72bbdd3edb0c72a835615f9998d2 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -678,7 +678,7 @@ $CONFIG = array(
  * seen in the first-run wizard and on Personal pages.
  */
 'customclient_desktop' =>
-	'https://nextcloud.com/install/',
+	'https://nextcloud.com/install/#install-clients',
 'customclient_android' =>
 	'https://play.google.com/store/apps/details?id=com.nextcloud.client',
 'customclient_ios' =>
diff --git a/lib/private/legacy/defaults.php b/lib/private/legacy/defaults.php
index 036617ba5f9873323dec7f1eea3037ec6000439f..ea41d80076e03e79c9b4f1df01b6f18db0260d53 100644
--- a/lib/private/legacy/defaults.php
+++ b/lib/private/legacy/defaults.php
@@ -55,7 +55,7 @@ class OC_Defaults {
 		$this->defaultName = 'Nextcloud'; /* short name, used when referring to the software */
 		$this->defaultTitle = 'Nextcloud'; /* can be a longer name, for titles */
 		$this->defaultBaseUrl = 'https://nextcloud.com';
-		$this->defaultSyncClientUrl = 'https://nextcloud.com/install';
+		$this->defaultSyncClientUrl = 'https://nextcloud.com/install/#install-clients';
 		$this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8';
 		$this->defaultiTunesAppId = '1125420102';
 		$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.nextcloud.client';
diff --git a/themes/example/defaults.php b/themes/example/defaults.php
index 346d510f622b74b66f75209d2768693c69027e69..25ec350ed1b0b02e105287b6e855f80b4fc50655 100644
--- a/themes/example/defaults.php
+++ b/themes/example/defaults.php
@@ -33,7 +33,7 @@ class OC_Theme {
 	 * @return string URL
 	 */
 	public function getSyncClientUrl() {
-		return 'https://nextcloud.com/install';
+		return 'https://nextcloud.com/install/#install-clients';
 	}
 
 	/**