C CjR25 New member Mar 28, 2010 2 0 0 Jun 29, 2010 #1 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
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
B bry4n New member Jul 24, 2009 10 0 0 Jun 29, 2010 #3 <?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="1;url=http://yoursite.com">
HiGhPeR Designer Oct 15, 2009 2,447 21 0 h6.cr www.hyper6.com Jun 29, 2010 #4 I do <meta http-equiv="refresh" content="0";url=http://yoursite.com">
E effinOUTRAGE New member Jun 13, 2010 18 1 0 Jun 29, 2010 #5 bry4n said: <?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"> Click to expand... 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.
bry4n said: <?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"> Click to expand... 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.
O Onedollaridea Black Man Apr 28, 2007 983 14 0 Jun 29, 2010 #6 You can also use tracking202 or just use above options