MyBB Community Forums

Full Version: Make a section the home page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to use MyBB as a directory in a way and instead of have multiple sections on index.php I want it to actually be a category instead. 

So for example I want fid1 to be the index page.

How can go I go about doing this?.
(2016-06-28, 07:16 AM).m. Wrote: [ -> ]see replies here

I checked that and tried but index.php still shows the regular sections while accessing without index.php shows the fid.
^ yes, that is as expected. I missed your actual requirement !

you can add redirect rule like below in the .htaccess file
RewriteRule ^index.php forumdisplay.php?fid=1 [QSA,L]
(2016-06-28, 08:14 AM).m. Wrote: [ -> ]^ yes, that is as expected. I missed your actual requirement !

you can add redirect rule like below in the .htaccess file
RewriteRule ^index.php forumdisplay.php?fid=1 [QSA,L]

That works, thank you.