Redirect to construction page

  • Thread starter Thread starter Teriel9
  • Start date Start date
T

Teriel9

Can anyone please advise code in "index.htm" to redirect visitors to the
"Under construction page" when entering a site
Thanks
Teriel9
 
Hi Mike
Thanks for your response.
I would like to continue building the site and testing it in it's current
form and redirect would suit me better.
Thanks
Teriel9
 
Hi Terry,

Try this:


<html>

<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<script language="JavaScript">
var URL = "http://placeyourredirectpathhere/";
self.location = URL;
</script>

</head>


</html>


Your redirect path would be like www.mysite.com/constructionpage.htm

Hope this helps.

Leo.
 
Hi Mike
Thanks for your response.
I would like to continue building the site and testing it in it's current
form and redirect would suit me better.
Thanks
Teriel9
 
Back
Top