MyBB Community Forums

Full Version: Redirect forum??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to redirect mydomain.com to mydomain.com/forum/index.php .. can someone help me?
Either use the redirection manager in cPanel, use a .htaccess redirect http://www.javascriptkit.com/howto/htaccess7.shtml

Or make a file called index.php in your root folder and put this in the file:
<?php
header("Location: mydomain.com/forum/", true, 303);
exit;
?>