How to Secure an Existing WordPress Installation?

Here we will list 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 <Your IP>

- 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
<Files ~ ".(css|jpe?g|png|gif|js)$">
Allow from all
</Files>

 

- Protect the wp-admin folder with a password.

- Keep your WordPress, as well as the Wordpress plugins updated to their latest versions.


Was this article helpful?

mood_bad Dislike 0
mood Like 0
visibility Views: 2242