thanks!
You can request that the host set the domain as a 301 (they may charge for this service, nominal one-time fee is fair), or you can transfer the domain to another host that will give you access to set up the redirect. There are also many low cost hosting providers that offer a control panel with redirect capabilities if you can't access the server directly.
<HTML>
<HEAD><SCRIPT LANGUAGE="JavaScript">
<!-- Begin Code
redirectionTime = "0000";
redirectionURL = "http://www.foo-domain.com/";
function redirectionTimer() { self.setTimeout("self.location.href = redirectionURL;",redirectionTime); }
// End Code--></script>
</head>
<body onLoad="redirectionTimer()">
</BODY>
</HTML>
And also - I'm running the script on several websites - Google follows the re-direct.
Hope this helps,
Sid
Does anyone have code that will send a *301 Permanent* redirect initiated from an HTML file (javascript or other).