I have a need to do this:
Receive a URL that looks something like this:
http://www.somesite.com/[something]?title=ABCTitle&name=ABCName
Then the [something] takes the key/value pairs and redirects them to:
http://www.someOTHERsite.com/?title=ABCTitle&name=ABCName
Basically I want to take the data after the '?' and send it on to another site.
What would the code look like for [something]?
Thanks all!
-Kevin