Skip to content

Instantly share code, notes, and snippets.

Created April 13, 2015 10:42
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 anonymous/a5271049123cc0c3ce0d to your computer and use it in GitHub Desktop.
Save anonymous/a5271049123cc0c3ce0d to your computer and use it in GitHub Desktop.
PHP 301 Redirect
<?php header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.domain.de/der-neue-name.php");
header("Connection: close");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment