MyBB Tutorials

Custom 404 Page

Submitted by Mr_Joker, , Thread ID: 4835

Thread Closed
Mr_Joker
YouR JuSt G4Y
Level:
0
Reputation:
3
Posts:
795
Likes:
51
Credits:
493
15-06-2015, 09:10 AM
#1
First of all, you're gonna want to add this code to the last line on your .htaccess file.

Code:
ErrorDocument 404 /filenotfound.php

Now, you want to create a new page, called 'filenotfound.php' and add this code 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);
?>

Now, upload the filenotfound.php file to your main website's directory.

Then, 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.

Not my content don't come to me if shit doesn't work but it should Smile

Users browsing this thread: 1 Guest(s)