Log in

View Full Version : Redirect Question


cyberbeggar
07-28-2006, 03:38 AM
Hi All,

I want people to go straight to my Portal instead of the Index when there enter my URL > Backpackers.info

How do I get the page to open at http://www.backpackers.info/portal.php? instead of http://www.backpackers.info/index.php?

You can see what I mean here www.BeautUtes.com

Thanks!

Kirk Y
07-28-2006, 03:55 AM
Stick this in a file named index.html in your root dir.
<html>
<HEAD>
<SCRIPT language="JavaScript">
<!--
window.location="http://yourdomain.com/portal.php";
//-->
</SCRIPT>
</HEAD>
</html>

cyberbeggar
07-28-2006, 04:15 AM
Thanks Kirk,

I really appreciate your quick reply! Fixed!

Will