Skip to content

Instantly share code, notes, and snippets.

View gloomvoid's full-sized avatar

gloom gloomvoid

View GitHub Profile
301 moved permanently (redirect):
<?php
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.example.com');
die();
?>
302 moved temporarily(redirect):
<?php
header('Location: http://www.example.com');