Skip to content

Instantly share code, notes, and snippets.

@jerrickhakim
Created March 19, 2018 05:08
Show Gist options
  • Save jerrickhakim/93252a8ffc3f01a3c056ed8a429c37c7 to your computer and use it in GitHub Desktop.
Save jerrickhakim/93252a8ffc3f01a3c056ed8a429c37c7 to your computer and use it in GitHub Desktop.
Setting 404 Page Redirects in Wordpress by Modifying the 404.php File.
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".home_url('/replaceme'));
exit();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment