Skip to content

Instantly share code, notes, and snippets.

@wonderb0lt
Created December 1, 2013 00:21
Show Gist options
  • Save wonderb0lt/7726857 to your computer and use it in GitHub Desktop.
Save wonderb0lt/7726857 to your computer and use it in GitHub Desktop.
<?php
$url_info = parse_url($_SERVER["REQUEST_URI"]);
$path = $url_info["path"];
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.newwebsite.com/" . $path);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment