Skip to content

Instantly share code, notes, and snippets.

@sycobuny
Last active December 11, 2015 08:29
Show Gist options
  • Save sycobuny/4573700 to your computer and use it in GitHub Desktop.
Save sycobuny/4573700 to your computer and use it in GitHub Desktop.
Obsessive amounts of redirection
<?php
function redirect($url, $exit_status = 1) {
header('HTTP/1.0 303 See Other', true, 303);
header("Location: $url");
echo "<html><head><meta http-equiv='refresh' content='0;$url'></head>";
echo "<body><script>window.location='$url'</script></body></html>";
exit($exit_status);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment