To make your wordpress blog more secure, you can set up some secret keys for your wordpress. WordPress is itself very secure, but this makes it more secure.
It is very easy, follow the steps below:
1) Open your wp-config.php file.
2) You will find the below mentioned lines:
define('AUTH_KEY', 'put your unique phrase here');define('SECURE_AUTH_KEY', 'put your unique phrase here');define('LOGGED_IN_KEY', 'put your unique phrase here');define('NONCE_KEY', 'put your unique phrase here');3) Add your secret keys here and save the file.
4) WordPress has created a generator for these lines to assist people in creating good ones. Go to this site, and copy and paste the result into your wp-config file:
http://api.wordpress.org/secret-key/1.1/
Popularity: 25%














