Start a conversation

How do I block visitors from my site?

Create a .htaccess file and add the following code--changing the IPs to suit your needs--each command on one line each:

order allow,deny
deny from 123.45.6.7
deny from 012.34.5.
allow from all 

Procedure:

1.

2. 

3.

4.

5.

6.

7.

You can deny access based upon IP address or an IP block. The above blocks access to the site from 123.45.6.7, and from any subdomain under the IP block 012.34.5. (012.34.5.1, 012.34.5.2, 012.34.5.3, etc.)

You can also set an option for denying from all, which would, of course, deny everyone. You can also allow or deny by domain name rather than IP address (allow from .friendsite.com works, etc.)

Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Support-Agent

  2. Posted
  3. Updated

Comments