K
Karen Wise
I have changed servers and need to direct people to my
new site. How do I do that in front page?
Thanks
Karen
new site. How do I do that in front page?
Thanks
Karen
Kevin said:It's tricky, because anyone can go to any page in your web. There are a
couple of ways to do it. The easiest is through IIS Admin. Just set up the
web site to redirect to the new web site. However, if you don't have the
ability to do it through IIS, you can add a META Refresh tag or JavaScript
to every page in the site, which redirects to the new site. Example:
<head>
<META HTTP-EQUIV="refresh"
content="2;URL=http://www.yoursite.com/newpage.htm">
</head>
With JavaScript:
<script type="text/javascript">
document.location = "http://www.yoursite.com/newpage.htm";
</script>
--
HTH,
Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.