diff --git src/wp-signup.php src/wp-signup.php
index cbc4ddb..20e7bb4 100644
--- src/wp-signup.php
+++ src/wp-signup.php
@@ -983,20 +983,28 @@ if ( 'none' === $active_signup ) {
 			}
 
 			if ( $newblogname ) {
-				$newblog = get_blogaddress_by_name( $newblogname );
-
-				if ( 'blog' === $active_signup || 'all' === $active_signup ) {
-					printf(
-						/* translators: %s: Site address. */
-						'<p>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</p>',
-						'<strong>' . $newblog . '</strong>'
-					);
+				$current_network = get_network();
+				if ( is_subdomain_install() ) {
+					$path = $current_network->path;
 				} else {
-					printf(
-						/* translators: %s: Site address. */
-						'<p>' . __( 'The site you were looking for, %s, does not exist.' ) . '</p>',
-						'<strong>' . $newblog . '</strong>'
-					);
+					$path = $current_network->path . $newblogname . '/';
+				}
+				if ( ! domain_exists( $newblogname, $path, $current_network->id ) ) {
+					$newblog = get_blogaddress_by_name( $newblogname );
+
+					if ( 'blog' === $active_signup || 'all' === $active_signup ) {
+						printf(
+							/* translators: %s: Site address. */
+							'<p>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</p>',
+							'<strong>' . $newblog . '</strong>'
+						);
+					} else {
+						printf(
+							/* translators: %s: Site address. */
+							'<p>' . __( 'The site you were looking for, %s, does not exist.' ) . '</p>',
+							'<strong>' . $newblog . '</strong>'
+						);
+					}
 				}
 			}
 			break;
