When working with a non-technical client, you often end up telling them well the login url is yourdomain.com/wp-login.php. Some folks suggest /wp-admin/ instead of the wp-login.php url. Wouldn’t it be so much better if you can just tell your clients to go to yoursite.com/login/. Well, in this article, we will show you how to create simpler login URL in WordPress for your clients.
Open the .htaccess file and paste the following code above the WordPress rewrite rule
RewriteRule ^login$ http://yoursite.com/wp-login.php [NC,L]
Don’t forget to replace the domain name to your site’s domain. That’s it. Now you can suggest your clients to go to yourname.com/login/ rather than wp-login.php
You Might Also Like: How to fix WordPress Login issues