I'm looking to find a way to redirect a page with PHP to another url based on it's sequence, like so
http://example.com/re.php?=http://google.com
The page would redirect to google.com. How would I do this?
url would be more like http://example.com/re.php?url=http://google.com
re.php would look something like:
header('Location: ' . $_GET['url']);
Just a guideline.