WordPress as we all know is one of the best platforms available for blogging and also for regular websites and is completely free of cost. There are thousands of free plugins available for customization along with code customizations available. Each installation of WordPress has an administrator login and this can be accessed from the URL, http://yourwebsite.com/wp-login.php
and here you can provide the backend login credentials. But when you are providing these details to your client, who might not be a techie or a WP expert, it is not an easy to remember URL and sometimes the hyphen or the .php might be missed.
The best solution for this problem is to create a simpler login URL. WP Beginner has a very simple trick to create a simpler WordPress Login URL using the .htaccess rewrite rule. To to this, open the htaccess file for the website and paste the below code above the WordPress rewrite rule.
RewriteRule ^login$ http://yoursite.com/wp-login.php [NC,L]
Make sure that you change the yoursite in the above code with the URL of your website. Once this is done, you can tell your clients to login into back end using the URL yourname.com/login/, which is much more simpler to remember.