If you want your wordpress login logo to redirect to your site root add the following code to your theme’s functions.php file
add_filter('login_headerurl', 'my_login_url_local');
function my_login_url_local() {
return get_bloginfo('url');
}
Tested with WordPress 3.3