How to change “wp-login.php” url
Description:
Open your .htaccess file in your wordpress root folder and add this rewrite rule to change yourblog.com/wp-login.php in yourblog.com/logins or somethings else
The Code:
RewriteRule ^pushmein$ http://yoursite.com/wp-login.php [NC,L]
In this case the correct login url will be: yourblog.com/pushmein


