MyBB Community Forums

Full Version: Separate portal from forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Is there a way to show the portal as the index (such as going to suchandsuch.com it'll show the portal) and then a link to the forum will go to /forum so it kind of looks like a CMS-like look? I thought that might look pretty cool, I think.

Help me out here? XD
Add the following to .htaccess

DirectoryIndex portal.php
So that'll just add the portal.php to the index? Also, is there a way to change it from saying "Portal" to "Home" on the breadcrumb area? ^^;
You mean in the navigation?
If yes go in the portal.php file and find:
add_breadcrumb($lang->nav_portal, "portal.php");
And replace with
add_breadcrumb("Home", "portal.php");
Okay, cool. So, for it to show /forum/index.php on the forum link, does it have to be in a /forum directory? Right now, it's in the root.
What do you want? °_°
Eh-heh... sorry. I got the idea from this other forum where it shows the portal as the index and the forum link directed to 'forum.blahblah.com' and I wanted to see how to do that. Sorry for the confusion.
Ah, that'd make sense.

Is it possible to move the forum root into a subdirectory from the root of the domain without disrupting anything? Just wondering. Toungue
ACP -> config -> general config -> board url: http://yoursite.com/subdir
and then move all the MyBB files from root to the subdir Smile
Pages: 1 2