Source: http://stackoverflow.com/questions/8127453/redirect-after-login-on-wordpress
Add the following to child theme’s functions.php
function admin_default_page() {
return ‘/new-dashboard-url’;
}
add_filter(‘login_redirect’, ‘admin_default_page’);