diff --git a/src/wp-includes/ms-settings.php b/src/wp-includes/ms-settings.php index 6e3a4ebd66..ddcbb997f2 100644 --- a/src/wp-includes/ms-settings.php +++ b/src/wp-includes/ms-settings.php @@ -35,7 +35,7 @@ if ( !isset( $current_site ) || !isset( $current_blog ) ) { $_SERVER['HTTP_HOST'] = substr( $_SERVER['HTTP_HOST'], 0, -4 ); } - $path = stripslashes( $_SERVER['REQUEST_URI'] ); + $path = strtolower( stripslashes( $_SERVER['REQUEST_URI'] ) ); if ( is_admin() ) { $path = preg_replace( '#(.*)/wp-admin/.*#', '$1/', $path ); }