// See if the IP address is ok if(request.ip.indexOf("207.200.75.") != -1){ // Send them to an authorized page redirect(addClient("/authorized.html")); }else{ // Send them to an error page redirect(addClient("/unauthorized.html")); }