i'm not sure whether or not to use the code pasted below. if so, do i just place this in my index.html or i should use tracking 202? i'm obviously trying to hide my referral network. i think i'm on the right track, but not positive. any advice is greatly appreciated.
also, if the code below is what i should use, do i place each section respectfully in <head> <body>? or just put my desired url in and paste the whole code together?
thanks guys. :hollering:
<html>
<!-- Replace Google with whatever url you like !-->
<head>
<title>Google</title>
<meta name="robots" content="noindex">
<meta http-equiv="refresh" content="1; url=http://google.com">
</head>
<body>
<form name="form1" id="form1" method="get" action="http://google.com"></form>
<script type="text/javascript">
document.form1.submit();
</script>
<div style="padding: 30px; text-align: center;">
You are being automatically redirected to Google.<br/><br/>
Page Stuck? <a href="http://google.com">Click Here</a>.
</div>
</body>
</html>
also, if the code below is what i should use, do i place each section respectfully in <head> <body>? or just put my desired url in and paste the whole code together?
thanks guys. :hollering:
<html>
<!-- Replace Google with whatever url you like !-->
<head>
<title>Google</title>
<meta name="robots" content="noindex">
<meta http-equiv="refresh" content="1; url=http://google.com">
</head>
<body>
<form name="form1" id="form1" method="get" action="http://google.com"></form>
<script type="text/javascript">
document.form1.submit();
</script>
<div style="padding: 30px; text-align: center;">
You are being automatically redirected to Google.<br/><br/>
Page Stuck? <a href="http://google.com">Click Here</a>.
</div>
</body>
</html>