You need a index.html or index.php or index.shtml to have a normal page in your root dir.
If a index page is missing from that dir, the dir & file structure will be displayed instead.
As YT pointed out, you can move your forums to your public_html folder instead of the forum folder.
Code:
<script>
//Browser redirect Script
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
//if NS 6
if (browser_type=="Netscape"&&browser_version>=5)
window.location.replace("yourURLhere")
//if IE 4+
else if (browser_type=="Microsoft Internet Explorer"&&browser_version>=4)
window.location.replace("your URLhere")
//if NS4+
else if (browser_type=="Netscape"&&browser_version>=4)
window.location.replace("yourURLhere")
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
window.location="yourURLhere"
</script>
Put that code in the index file.