WordPress for everyone, WordPress for Everything. Now we have see many many site and blog powered by WordPress. Now I will show you How To Create Pretty Login URL for WordPress.
Like we all know, standard WordPress login will be something like this
hxxp://wptricks.net/wp-login.php
For me this URL didn’t good and if we want to change something like this
hxxp://wptricks.net/login/
I think the second URL much better right? Now You can simply do it on your own WordPress. all need to do Install Ozh’ Simpler Login URL by OZH.
How To Install Ozh’ Simpler Login URL WordPress Plugin
- Upload files to your
/wp-content/plugins/directory (preserve sub-directory structure if applicable) or you can using Add New Plugin feature on your WordPress Dashboard - Activate the plugin through the ‘Plugins’ menu in WordPress
- Refer to the official plugin page for documentation, usage and tips
We hope How To Create Pretty Login URL for WordPress is easy to be implemented on you. That’s it, now you have pretty login URL
Photos source http://www.flickr.com/photos/nirak/2507579452/




Why use a plugin and waste performance if you can simple create a redirect?
Sometimes, for Newbie blogger using Plugin much easier
Pingback: Tweets that mention How To Create Pretty Login URL for WordPress # WordPress Tricks & Tips -- Topsy.com
While I agree that plugins are probably easier to initially setup, hard coding a redirect in the .htaccess file will probably be better overall in this case. Too many plugins can slow down your blog and you also have to keep the plugin up to date, so a small tweak like this shouldn’t need one in my opinion. Plus, with so many bloggers looking to optimize SEO and speed, they’ll already have a .htaccess file or make great use of one later.
Just add this line to your .htaccess file:
Redirect 301 /login http://www.mysite.com/wp-login.phpThere are 3 spaces total. The first directory should be relative to your root directory, NOT the full URL. The second part should be the full URL.
If you don’t have a .htaccess file in your root directory, open up Notepad (or your favorite text editor [not MS Word]), go to Save As, name it “
.htaccess“, and set the Save As Type to “All Files”.