Access control to wordpress login page using .htaccess

Solution: 

Hello its more easy to use php

<?php

$wl = array('111.111.111.111', '111.111.111.112');
if (in_array($_SERVER['REMOTE_ADDR'], $wl)) {
    /* the login page php code goes here */
} else {
    /* Access denied page or what ever goes here  */
    echo 'Access denied.'; 
    echo "<br />IP Address: ".$_SERVER['REMOTE_ADDR']; 
    exit;
}

?>