Skip to content

Instantly share code, notes, and snippets.

@raphaelbussa
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raphaelbussa/b8b4e6767958380805a7 to your computer and use it in GitHub Desktop.
Save raphaelbussa/b8b4e6767958380805a7 to your computer and use it in GitHub Desktop.
Simple redirect from interactive php URL (http://example.org/redirect.php?url=https://www.google.com)
<?php
$url_redirect= $_GET["url"];
header("Location: ".$url_redirect);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment