MyBB Community Forums

Full Version: How to redirect error pages to homepage?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want error pages to be redirected to homepage.

How to do it?
You need to create some form of '404 not found' error page. Also you'll probably want to return 404 header! But if you want to redirect them to home page it's cool.

Create .htaccess file and add this code to it.

ErrorDocument 404 /index.php
(2014-04-21, 12:53 PM)marcus123 Wrote: [ -> ]You need to create some form of '404 not found' error page. Also you'll probably want to return 404 header! But if you want to redirect them to home page it's cool.

Create .htaccess file and add this code to it.

ErrorDocument 404 /index.php

Thanks for your reply, Question Man!

There's already a .htaccess file in the root. So, where to put the code?

And how to create a page? I don't see any option to create a new page.

(2014-04-21, 01:12 PM)ScoLevi Wrote: [ -> ]Are you using wordpress platform?

Nope, That's MyBB
If you wanna create a 404 page then this can help you http://community.mybb.com/thread-132242.html
I'm successful!

Thank you Marcus & VIP3R69! Smile