MyBB Community Forums

Full Version: Index For Forum Install Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Stupid question...
I have now installed the forum on two different domains successfully.

I am now ready to install on another domain, but how do I do it so that my index page is the forum? I want my forum to be at mydomain.com and not mydomain.com/forum



Never mind...I found it!
(Don't create a /forum directory Toungue)
A note to users who want this but don't want to upload everything again, you can do this in two easy ways:

HTML
Create a index.html page in your root directory and put the following code in:
<html><head><meta http-equiv="refresh" content="0;url=http://www.example.com/forum"></head></html>
Change the url to your forum url.

PHP
Create an index.php page in your root directory and make sure you delete the "index.html" or rename it.
<?php header("Location: http://www.example.com/forum"); ?>

Both will redirect your browser to the forum.