MyBB Community Forums

Full Version: Change Home Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, How to change the link to forum.php not index.php and add a page and make it index.php Smile
You can make the portal your homepage:
Rename index.php to forums.php
Rename portal.php to index.php

Open index.php and find:
add_breadcrumb($lang->nav_portal, "portal.php");
and replace with:
add_breadcrumb($lang->nav_portal, "index.php");

Then find:
redirect("portal.php", $lang->redirect_loggedin);
and replace with:
redirect("index.php", $lang->redirect_loggedin);

This may help!
Can I use other php file to be the homepage? or from page manager ?
(2011-02-25, 12:40 AM)zZJoennZz Wrote: [ -> ]Can I use other php file to be the homepage? or from page manager ?

Yes. You'll then need to set your .htaccess DirectoryIndex to whatever page you use for the default index.