I\'d like, for example, block every IP from base 89.95 (89.95..). I don\'t have .htaccess files on my server, so I\'ll have to do it with PHP.
.htaccess
$deny = array("111.111.111", "222.222.222", "333.333.333"); if (in_array($_SERVER['REMOTE_ADDR'], $deny)) { header("location:http://www.google.com/"); exit(); }