Usualy the second link works because the forum section stands for the folder name.
Try this.
Create a folder called forum , inside this place a file that is called index.html and inside this file put the following contents
HTML Code:
<script>
//Browser redirect Script- ? Dynamic Drive (www.dynamicdrive.com)
//For full source code, 100's more DHTML scripts, and Terms Of Use,
//visit dynamicdrive.com
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
//if NS 6
if (browser_type=="Netscape"&&browser_version>=5)
window.location.replace("http://www.silent-imperfection.net/forum.php")
//if IE 4+
else if (browser_type=="Microsoft Internet Explorer"&&browser_version>=4)
window.location.replace("http://www.silent-imperfection.net/forum.php")
//if NS4+
else if (browser_type=="Netscape"&&browser_version>=4)
window.location.replace("http://www.silent-imperfection.net/forum.php")
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
window.location="http://www.silent-imperfection.net/forum.php"
</script>
Its a re-direct script i use.
Once you done that, if people go to
www.silent-imperfection.net/forum it should redirect them to your forums. good luck