Block an address ip

I want to block an address ip

Follow the method

settings … Security … Manage IP addresses …Add ip After inserting Choose Deny
69.164.111.198 is boot

However it enters my site

Possible solve my problem

Once you’ve added 69.164.111.198 via general settings open public_html and look for .htaccess and tell me if you see 69.164.111.198 inside it?

1 Like

To deny the access for this particular IP address, you can add below code in your .htaccess file in public_html.

Deny from 69.164.111.198

This code will deny the access of your website for this particular IP address.

1 Like