Skip to content

Instantly share code, notes, and snippets.

@fghber
fghber / sample-php-headers.php
Last active October 26, 2017 16:57 — forked from ScottPhillips/sample-php-headers.php
PHP Header Examples
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');