faqts : Computers : Programming : Languages : PHP : Common Problems : Redirects

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

11 of 12 people (92%) answered Yes
Recently 9 of 10 people (90%) answered Yes

Entry

How can I redirect from a main domain to my personal web page?

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