simple question for newbie

liunx

Guest
hey guys...<br />
<br />
When you go to my site...I want it to automatically take you to my other site....how to i set up that HTML and what is that called?<br />
<br />
rbgerman<!--content-->It's called a redirect and there are several ways to do this. The best is to send an HTTP redirect header but that involves playing around with the server. The following, like other client side methods, will not always work so always provide a link.<br />
<br />
<script type="text/javascript"><br />
<!--<br />
location.replace('http://www.somewhere.else/')<br />
// --><br />
</script><!--content-->i tried<br />
<br />
<META HTTP-EQUIV="refresh" CONTENT="1; URL=http://espn.go.com"><br />
</HEAD><br />
<br />
<br />
that worked...thanks<br />
<br />
<br />
rbgerman<!--content-->
 
Back
Top