MyBB Community Forums

Full Version: A single section?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I basically want to have 1 section where people post in and that's it, and not to display any categories, sections, etc.

A perfect example of this setup would be: http://lunaticoutpost.com

Is there a simple way to do this?
Add the following to your .htaccess file (if you're using Apache as a webserver):

DirectoryIndex forumdisplay.php?fid=x

Replace x with the fid of the forum.
I just tried that, doesn't seem to be working.
Delete index.php and replace it with:
<?php
header('Location: forumdisplay.php?fid=x');
?>