WordPress: Add simple login URL
If you create WordPress websites for your clients or general users, you might want to add a simple URL to log in to the WordPress dashboard. Instead of http://website.com/wp-login.php, you can change the login to http://website.com/login.
To change the login URL of WordPress, you just need to add a simple rewrite rule to the .htaccess file in the main folder of your WordPress website. Replace http://yoursite.com with the URL of your website.
RewriteRule ^login$ http://yoursite.com/wp-login.php [NC,L]
If you were expecting some elaborate method or code, really sorry to disappoint you.