View Single Post
Old 03-29-2004, 05:47 PM  
rowan
Too lazy to set a custom title
 
Join Date: Mar 2002
Location: Australia
Posts: 17,393
With PHP you would do something like this:

Code:
if (strstr(strtolower($_SERVER["HTTP_ACCEPT"]), "text/html") =<b></b>= "") {
  $url = "http://www.redirectbadhitstohere.com/";
} else {
  $url = "http://www.sendtotrafficbuyer.com/";
}
header("HTTP/1.0 302 bounce");
header("Location: $url");
rowan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote