Click to See Complete Forum and Search --> : Is there a redirect script for this


CaribbeanHigh
02-04-2003, 02:16 PM
Several of the search engines will pull up links to my website that are actually pages within my site allowing users to start from the middle of the site and outside of the frames. I need something that will redirect or forward them to the beginning of the site and within frames when they use these links from the search engines.


for example my site is http://www.Caribbeanhigh.com

and some of the search engines return with links to

http://www.Caribbeanhigh.com/frames1.htm

I need everyone to start from http://www.CaribbeanHigh.com
only.

swon
02-04-2003, 02:56 PM
Try this one, paste it into the header of each framed document:

<script language="JavaScript">
<!--
if(window.location == top.location)
{
window.location.href="index.php";
}
//-->
</script>

CaribbeanHigh
02-04-2003, 06:22 PM
That worked thank you