Hey joesgraphics, Does this help? <?PHP $banned_url='http://url-to-send-banned.com'; $banned=array('site1.com', 'site2.com', 'site3.com'); if (in_array($_SERVER['HTTP_HOST'], $banned)) { die(header("Location: {$banned_url}")); } ?> PHP: This needs to be as close as possible to the top of the file because of the header() function call. Otherwise, if data is sent to the browser before the header() call in your script there will be PHP warnings. If you can't put this at the top of your script for whatever reason, change the die(header()); to echo "<script> window.location='{$banned_url}'; </script>"; - Andy