8 Wordpress security tips
Protect your /wp-admin/ folder
Administration files are located in this folder. This means that protection is imperative. You can do that by configuring a .htaccess file where you can restrict access to the folder based on the originating IP address.
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName “Example Access Control”
AuthType Basic
<limit>
order deny,allow
deny from all
allow from xx.xx.xx.xx
allow from xx.xx.xxx.xx
</limit>
Hide your plugins folder
This [...]



