MyBB Community Forums

Full Version: Home page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Thanks in advance. How do I add a new page to my forum? I want to add a home or welcome page you go to first. Instead of going directly to the forum it would be a welcome screen about the club and then have a link. Thanks everyone.
Hello,

If you would like the page to have style identical to the one of your forum, you should follow this tutorial Wink

If not, just create your own HTML page. Then, add the following code to a file named .htaccess (in the directory where you have MyBB installed — if it doesn't exist, create it):

DirectoryIndex yourfile.php

Replace yourfile.php with the file name.

This way, example.com/MyBB/ (same as example.com/MyBB/yourfile.php) shows your custom page, and example.com/MyBB/index.php shows the list of forums. Smile

Hope this helps Smile

EDIT: If you don't have an Apache server, it won't support .htaccess, so this can't work...