MyBB Community Forums

Full Version: Landing Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to make the landing page to be my portal so I changed the content of index.php as follows:
<html>
<head>
<title>site name here</title>
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=portal.php">
</HEAD>

However, I can't easily access the forum itself. Is there any other way to do it? To be specific, I'd like to make it like the vbulletin site in http://digitalphotographer.com.ph/

thanks in advance!
You shouldn't edit the index.php directly, or else you won't have a forum index page. Instead, you should rename the old index.php (the one with MyBB code) to forum.php, and then make a new index.php with the redirect code. Then in the header template, change the link the forum to forum.php
thanks, dennis! I'll try this out.