Landing Page Redirect

CjR25

New member
Mar 28, 2010
2
0
0
Could someone please point me in the right direction?.. I am trying to automatically redirect my landing page to an offer page. Thanks in advance for any advice.

-Chris
 


<?php
header("Location: http://yoursite.com");
?>

or

<script>window.location="http://yoursite.com";</scrpt>

or

<meta http-equiv="refresh" content="1;url=http://yoursite.com">
 
<?php
header("Location: http://yoursite.com");
?>

or

<script>window.location="http://yoursite.com";</scrpt>

or

<meta http-equiv="refresh" content="0;url=http://yoursite.com">


All three of these are valid options. If you are trying to blank the referrer or do anything else, it gets a little more complex.

There is also a forced JavaScript (button click) redirect used for faking referrers.