Click to See Complete Forum and Search --> : browers redirect


tane
10-10-2003, 04:36 AM
Is this possible - When someone types in my domain wwww.lalaland.com.au can i have that domain redirect them to another site - ....thanks in advance

jbergthorson
10-10-2003, 11:18 AM
you can.

when they go to:
wwww.lalaland.com.au
you have an index.html file there.

In that file, use:
<head>
<script language="javascript">
function goToOtherPage(){
document.location.href="theNewDomainName/file.html";
}

</script>
</head>
<body onload="goToOtherPage()">
</body>

jbergthorson
10-10-2003, 11:21 AM
oh, yeah:
make sure you put "http://www.domainName.com/file.html"
as the location.. if you forget the http:// things might not work as it will try to find that file in the current domain. Didn't test it though, so it may work without the http:// but i would put it there just in case.

jason

tane
10-10-2003, 10:46 PM
thanks