1. Add this code to the last line on your .htaccess
2.Create a file called filenotfound.php, and add this to it:
3. Upload the filenotfound.php file to your main website's directory.
4. Create a new template on your main theme with the name 404 and add this to it:
Edit where it says Your 404 Page Content to whatever suits your needs.
Credits:Ocean
Code:
ErrorDocument 404 /filenotfound.php
2.Create a file called filenotfound.php, and add this to it:
Code:
<?php
define('IN_MYBB', 1);
require_once("global.php");
add_breadcrumb("404 Error", $_SERVER['PHP_SELF']);
eval("\$page = \"".$templates->get("404")."\";");
output_page($page);
?>
3. Upload the filenotfound.php file to your main website's directory.
4. Create a new template on your main theme with the name 404 and add this to it:
Code:
<html>
<head>
<title>Your title</title>
{$headerinclude}
</head>
<body>
{$header}
Your 404 Page Content
{$footer}
</body>
</html>
Edit where it says Your 404 Page Content to whatever suits your needs.
Credits:Ocean