You can deny access based upon IP address or an IP block using htaccess file
ex:
Code:
order allow,deny
deny from 123.45.6.7
deny from 012.34.5.
allow from all
The above blocks access to the site from 123.45.6.7, and from any sub domain under the IP block 012.34.5. (012.34.5.1, 012.34.5.2, 012.34.5.3, etc.)
Last edited by nayes84; 04-27-2009 at 01:08 AM..
|