MyBB Community Forums

Full Version: How do I redirect my domain.com/forum.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Basicly, I merged not too long ago from vBulletin.

And there the main site was www.domain.com/forum.php
Since we moved to Mybb it's now www.domain.com/index.php

I'm wondering how I can redirect forum.php to index.php.
Because currently it shows up a 404 error. This might make people think the forum is still down etc.

Thank you,
make forum.php file with below content and upload to forum's files server
<?php

   header( 'Location: index.php' ) ;

?>
Did not work, this code worked though.


<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.domain.com">