What type of tool is this?

  • Thread starter Thread starter GeoffreyF67
  • Start date Start date
G

GeoffreyF67

Guest
Let's say I buy some media traffic or ppc traffic.

When the traffic goes to my site it would look like this:

www.mydomain.com/?keyword=blah
www.mydomain.com/?keyword=foo

What I want is something that will take that url above, parse the keyword then redirect to another url.

Simple, yes.

Yah I could write it but hey - if there's something out there that already does this and will let me enter hundreds/thousands of urls at a time it would be great.

G-Man
 
Doorway ?

Most doorway generators do this ? i guess if you rip the scripts up it can work
 
<?php

$sites['blah']="http://www.blah.com";
$sites['foo']="http://www.foo.bar";
$sites['root']="http://www.root.domain";

if (!isset($_GET['keyword'])) $_GET['keyword']="root";

if (isset($sites[$_GET['keyword']]))
{
header("Location: ".$sites[$_GET['keyword']]);
} else
header("Location: http://www.sitenotfound.com");

?>

just for you ^^
 
Back
Top