-
-
Save grim-reapper/d8380a75521c44d13c4e to your computer and use it in GitHub Desktop.
Create a custom 404 page not found error page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Files .htaccess> | |
order allow,deny | |
deny from all | |
</Files> | |
ErrorDocument 403 /errors/error.php | |
ErrorDocument 404 /errors/error.php | |
ErrorDocument 405 /errors/error.php | |
ErrorDocument 408 /errors/error.php | |
ErrorDocument 500 /errors/error.php | |
ErrorDocument 502 /errors/error.php | |
ErrorDocument 504 /errors/error.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$status = $_SERVER['REDIRECT_STATUS']; | |
$codes = array( | |
403 => array('403 Forbidden', 'The server has refused to fulfill your request.'), | |
404 => array('404 Not Found', 'The document/file requested was not found on this server.'), | |
405 => array('405 Method Not Allowed', 'The method specified in the Request-Line is not allowed for the specified resource.'), | |
408 => array('408 Request Timeout', 'Your browser failed to send a request in the time allowed by the server.'), | |
500 => array('500 Internal Server Error', 'The request was unsuccessful due to an unexpected condition encountered by the server.'), | |
502 => array('502 Bad Gateway', 'The server received an invalid response from the upstream server while trying to fulfill the request.'), | |
504 => array('504 Gateway Timeout', 'The upstream server failed to send a request in the time allowed by the server.'), | |
); | |
$title = $codes[$status][0]; | |
$message = $codes[$status][1]; | |
if ($title == false || strlen($status) != 3) { | |
$title = 'Unrecognized Status Code' | |
$message = 'The website returned an unrecognized status code.'; | |
} | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title><?php echo $title; ?></title> | |
<style> | |
html, body { | |
font-size: 100%; | |
} | |
body { | |
font-family: Arial, sans-serif; | |
background: #f7f7f7; | |
margin: 0; | |
padding: 0; | |
} | |
#content { | |
box-sizing: border-box; | |
max-width: 100%; | |
width: 800px; | |
margin: 50px auto; | |
padding: 50px; | |
background: #fff; | |
} | |
h1 { | |
margin-top: 0; | |
} | |
p { | |
font-size: 1rem; | |
line-height: 1.5; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="content"> | |
<h1><?php echo $title; ?></h1> | |
<p><?php echo $message; ?></p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment