MyBB Community Forums

Full Version: Click this and get sent to another page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
See photo:

[Image: untitled345uh.th.png]

The link that is circled redirects the user to the index.php file. For my forum that's the portal. I want the link to redirect the user to the main page instead (named index2.php). How do I do that?
Open the file global.php and search for:
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
Replace with:
$navbits[0]['url'] = $mybb->settings['bburl']."/index2.php";
That did the trick! Thanks! Smile