Clicking the wordpress logo shown on the login screen of your WordPress site goes to www.wordpress.com. You can change this address by adding the following code to your theme’s functions.php file.
add_filter( 'login_headerurl', 'my_custom_login_url' );
function my_custom_login_url($url) {
return 'http://tolgaatma.com';
}