[COLOR="Silver"] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Your Title</title>
</head>
<body>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "your_analytics_id";
urchinTracker();
</script>
</body>
</html>
[/COLOR]
<?php
header ('Refresh: 1 ; url=http://your_affiliate_url');
?>
<?php
header ("Location: http://your_affiliate_url");
?>
Hi,
This is first post on bhw forum for me ..![]()
if you want to hide your urls and your hosting campaign allow php on your site you can use this method.
Code:[COLOR="Silver"] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Your Title</title> </head> <body> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "your_analytics_id"; urchinTracker(); </script> </body> </html> [/COLOR] <?php header ('Refresh: 1 ; url=http://your_affiliate_url'); ?>
Paste above code on bottom of the html code... Another option without wait:
PHP:<?php header ("Location: http://your_affiliate_url"); ?>
Save one of these php files as redirect.php or goto.php or whatever you want. Upload it to your host like:
http://yourdomaincom/special_offer/redirect.php
or another think ... use your imagination..
Enjoy..
Hmm....
Warning: Cannot modify header information - headers already sent by (output started at /home3.....
<?php
//put this code at the end of your page
echo '<script>window.location="http://your_affiliate_url";</script>';
?>
at the top of the page. and then you won't get a error message<?php
header ('Refresh: 1 ; url=http://your_affiliate_url');
?>
<?
$site[1]="http://your_affiliate_url_1";
$site[2]="http://your_affiliate_url_2";
$site[3]="http://your_affiliate_url_3";
$site[4]="http://your_affiliate_url_4";
header ('Refresh: 1 ; url='.$site[$_GET['i']].'');
?>
<?
header ('Refresh: 1 ; url='.$_GET['i'].'');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Refresh" content="0;URL=AFFILIATE URL HERE">
<title>SITE TITLE HERE</title>
</head>
<body>
</body>
</html>
Here is a meta refresh I use to hide my referrer info..
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Refresh" content="0;URL=AFFILIATE URL HERE"> <title>SITE TITLE HERE</title> </head> <body> </body> </html>
Hope this helps
i've noticed that when you use .htaccess to stuff a forum with an img...then try to point the img to a meta refresh or a php header() redirect...that their browser never follows through. It only goes 1 deep. but if you type in the link to the picture in your webbrowser it goes all the way? what gives?