SECURE WORDPRESS

In this tutorial we will show you how to secure your WordPress blog.

If you have not installed your WordPress yet, it is a good idea to change the default database prefix before making the installation.

You can easily do this by modifying the following line in the wp-config-sample.php file;

$table_prefix = 'wp_';

Change it to something more complex, for example:

$table_prefix = '1w27p_';

Once you make this change, rename wp-config-sample.php to wp-config.php and proceed with the WordPress installation.

  • This can be done also by using the WordPress installation web interface. You should simply enter the desired database prefix in the Table Prefix field of the web installer interface.

If you have already installed your WordPress blog, here are some steps through which you can improve the security of an existing WordPress installation:

  • If you have manually installed your WordPress, the default administrator username will be admin. You should change this to something harder to guess. To do this, log in to your WordPress admin area, go to Users and create a new user with Administrator role. Once the account is created, log out from your admin area, log in with the new account you created and delete the old one.
  • Restrict access to the wp-admin folder only for your IP. You can easily do this by placing a .htaccess file in the wp-admin folder containing the following lines:

Deny from all

Allow from

You can see what is your IP at this URL.

  • Restrict the access to most files in the wp-includes and wp-content folders. The access to everything except images, CSS and JavaScript files can be blocked. To do this, create a .htaccess file and place the following rules in it:

Order Allow,Deny
Deny from all

Allow from all

  • Protect the wp-admin folder with a password. You can easily password protect the folder by following the instructions in this tutorial.

Source : http://www.siteground.com/