Visitor IP Banning
The below .htaccess code to ban visitor(s) from your site based on their IP address.
Add the below code to your .htaccess file, and upload to root of the directory:
## USER IP BANNING
order allow,deny
deny from 61.11.74.206 //(it’s our IP address)
allow from all
