Skip to content

Instantly share code, notes, and snippets.

@TaylorHawkes
Created January 17, 2023 19:16
Show Gist options
  • Save TaylorHawkes/44ba75de1e3e6292b527e8446eac110e to your computer and use it in GitHub Desktop.
Save TaylorHawkes/44ba75de1e3e6292b527e8446eac110e to your computer and use it in GitHub Desktop.
php 404 page
<?php
header("HTTP/1.0 404 Not Found");
echo '<html>
<head>
<meta http-equiv="Refresh" content="0;url=http://www.mysite.com/index.php?code=404" />
</head><body></body>
</html>';
?>
@TaylorHawkes
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment