Tag Archives: CMS

Simple WordPress Login

20 Sep

Whether you want to make it easier for your client to remember, or you are tired of typing wp-login, it’s easy to have a simplified login. I found the following tips posted by Chris Coyer

1. To make your login URL just http://yoursite.com/login just add this line in your .htaccess file before the default WordPress rewrite stuff:

RewriteRule ^login$ http://yoursite.com/wp-login.php [NC,L]

2.If you do not have an .htaccess fileĀ  open your text editor and past all of the following code and save in your root folder.

RewriteEngine On

RewriteRule ^login$ http://focus.ergon.com/wp-login.php [NC,L]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
# old code — RewriteBase /dev/
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# old code — RewriteRule . /dev/index.php [L]
RewriteRule . /index.php [L]
</IfModule>

<files wp-config.php>
order deny,allow
deny from all
</files>

# END WordPress

Screen shot 2011-07-20 at 12.31.38 PM

How to Have a Better WordPress CMS: The Login

20 Jul

The better I can make my site’s CMS the happier my client is. I am starting things off with the login. This is especially important, since the photographer will have clients logging in to view their photos.

[...]