![]() |
|
|
+ Search |
![]()
|
Jun 26th, 2004 00:07
Philip Olson, Narendra Jain, Steve Crg,
There are several methods for redirecting, pick one:
PHP:
<?php
header("Location: http://www.example.com/");
exit;
?>
JavaScript:
<HTML>
<SCRIPT LANGUAGE="JavaScript">
top.location.href="http://www.example.com/"
</SCRIPT>
</HTML>
HTML:
<HTML>
<HEAD>
<META http-equiv="refresh" content="1; url=http://www.example.com">
</HEAD>
</HTML>
Replace example.com with your URL. See also the following FAQT
section titled "Redirects":
http://www.faqts.com/knowledge_base/index.phtml/fid/60