Skip to content

Instantly share code, notes, and snippets.

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 iamprogrammerlk/1471803d94599fcea8c9916309bf53a2 to your computer and use it in GitHub Desktop.
Save iamprogrammerlk/1471803d94599fcea8c9916309bf53a2 to your computer and use it in GitHub Desktop.
Permanent 301 Redirect via PHP
<?php
// Permanent 301 Redirect via PHP
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://iamprogrammer.lk/");
exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment