diff --git src/wp-admin/includes/class-wp-debug-data.php src/wp-admin/includes/class-wp-debug-data.php
index 40c4f5d13f..0156581eb1 100644
--- src/wp-admin/includes/class-wp-debug-data.php
+++ src/wp-admin/includes/class-wp-debug-data.php
@@ -695,6 +695,15 @@ class WP_Debug_Data {
 			'debug' => $imagick_loaded,
 		);
 
+		// Pretty permalinks.
+		$pretty_permalinks_available = got_url_rewrite();
+
+		$info['wp-server']['fields']['pretty_permalinks_availability'] = array(
+			'label' => __( 'Pretty permalinks support' ),
+			'value' => ( $pretty_permalinks_available ? __( 'Yes' ) : __( 'No' ) ),
+			'debug' => $pretty_permalinks_available,
+		);
+
 		// Check if a .htaccess file exists.
 		if ( is_file( ABSPATH . '.htaccess' ) ) {
 			// If the file exists, grab the content of it.
