This is the ancient JavaScript code for redirecting the page to the different place but thought would still be good to record. I used it in my home page to redirect the visit to my blog which is here as I haven't set them up yet.
<script language="javascript">
function redirect()
{
window.location = "http://www.kjctech.net/blog/"
}
setTimeout("redirect();", 0)
</script>