heres some php
PHP Code:
<?php
if ( strstr($REMOTE_ADDR, '207.206') ) {
header ("Location: http://this.site.com");
exit;
} else {
header ("Location: http://that.site.com");
exit;
}
?>
I didn't test it out.
Let me know if it doesnt work, and I'll fix it.