Have a secure login and admin page. Allows you to create custom URLs for user's Log in, Log out, Sign up and Admin page.
By using Hide Login+ you can simply change most important URLs that are being accessed every day, keeping them safe and secret.
For those upgrading from previous version: please check installation steps
New features:
wp-config.php
any more (see installation steps).htaccess
backup file is created before changes take effect (named .htaccess.backup
)Benefits:
wp-login.php
and wp-admin
pagesFeatures:
wp-login.php
and wp-admin
directly.htaccess
content after changes have been successfully updated.Revert to default configurations on plugin deactivation (or easily via a second method)
This won’t secure your website perfectly, but if someone does manage to crack your password, it can make it difficult for them to find where to actually login. This also prevents any bots that are used for malicious intents from accessing your wp-login.php
file and attempting to break in.
hide-login
directory to the /wp-content/plugins/
directoryIf you are upgrading from previous versions please remove below lines from wp-config.php
if there are any:
define(‘WP_ADMIN_DIR’, ‘YOUR_ADMIN_SLUG’);
define(‘ADMIN_COOKIE_PATH’, SITECOOKIEPATH . WP_ADMIN_DIR);
1- Deactivate plugin. Done!
2- There is a backup file of .htaccess
in the root directory of your WordPress installation named .htaccess.backup
. You only need to remove your .htaccess
file and rename backup file from .htaccess.backup
to .htaccess
. Also rename hide-login
folder within plugins
directory to something else. Done!
https://github.com/churiart/hide-login
* Added delete_option on plugin activation to avoid later confliction
* No more need to modify `wp-config.php` for changing admin URL slug * Reduced and optimized `.htaccess` rules * `.htaccess` backup file is created in the same directory * All plugin options are cleared completely on deactivation * Many more bug & minor fixes and compatibilty issues done
* Changed some default options at activation to avoid 500 Server internal error * Restrictions on using default slugs like `wp-admin` for admin slug that made confliction * Optimized code readablity and stability * Solved fatal error caused by `check_admin_referer()` * Tested over wordpress 3.6
* Completely rewrote. * All rewrite rules will apply with wordpress buil-in functions * Remove plugin rewrite rules automatically on deactivation to wordpres default rules * Works with all permalink structures * Droped some useless options and codes and improved functionality * Now Setting page menu is at root * Tested Over the latest WordPress version(3.5.1)
* Fix an issue with hide mode capability
* Fix .htaccess query commands * Automatic removing and adding htaccess output to .htaccess file * Strong security key function * Added compatibility fix with WordPress installations in a directory like www.blog.com/wordpress/ * Added ability to disable plugin from its setting page * Added ability to attempt to change .htaccess permissions to make writeable * Added wp-admin slug option (can't login with it yet though) * htaccess Output rules will always show even if htaccess is not writeable * added ability to create custom htaccess rules * Added Register slug option so you can still allow registrations with the hide-login. (If registration is not allowed, this option will not be available.) * Security Key now seperate for each slug so that those registering cannot reuse the key for use on login or logout * Added better rewrite rules for a hidden login system. * Removed wp-login.php refresh redirect in favor of using rewrite rules for prevention of direct access to the file.