Skip to content

Instantly share code, notes, and snippets.

@vejnoe
Forked from CrowderSoup/301.php
Created September 30, 2020 07:07
Show Gist options
  • Save vejnoe/1503cd789784cbe986693bc3bdbcdcf5 to your computer and use it in GitHub Desktop.
Save vejnoe/1503cd789784cbe986693bc3bdbcdcf5 to your computer and use it in GitHub Desktop.
Simple PHP Redirect
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://example.com');
?>
<?php
header('Location: http://example.com');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment