Where is wordpress redirecting wp-admin/admin/dashboard to wp-admin and how to turn it off

you can remove this functionality by adding this code in a plugin or theme

remove_action( 'template_redirect', 'wp_redirect_admin_locations', 1000 );

This will remove all of dashboar, login, admin so if you will want some of them to still be there you will have to write your own replacement function to wp_redirect_admin_locations and hook it after you removed the hook to the original