Skip to content

Instantly share code, notes, and snippets.

@justinhartman
Created March 7, 2018 15:31
Show Gist options
  • Save justinhartman/12fbab68201c187c117cd20910d12a91 to your computer and use it in GitHub Desktop.
Save justinhartman/12fbab68201c187c117cd20910d12a91 to your computer and use it in GitHub Desktop.
301 Permanent Redirect in PHP
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://22digital.agency");
exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment