Am thinking about implementing the following within .htaccess file placed at: /wp-admin/.htaccess
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName “Access Control”
AuthType Basic
order deny,allow
deny from all
I realise that the above currently blocks all access but will something like the above prevent most/all types of hacks
Is there a way of password protecting the access through the same .htaccess file. I was hoping to implement using a static IP address rather than a password but this is a no go.
Justin