Quote:
|
Interested in the covering affiliate links! can u please help me
|
You can cover an affiliate link by create a file that redirects. I personally prefer PHP redirects because they've been shown to get past Internet Explorer's cookie blocking.
The code for a php redirect is:
<?php header("Location: PUT-YOUR-URL-HERE"); ?>
All you have to do is plug in your affiliate link and save that one line code as "product.php" and drive traffic to it. It will redirect instantaneously to your affiliate link and will prevent people from seeing initially that it is an affiliate link.
You can also do a frame redirect. These look good, but haven't stood up as well against cookie blocking. Here is the code for a frame redirect:
Quote:
<html><head>
<title>TITLE YOU WANT TO APPEAR ON PAGE</title>
<script>window.status = ' ';</script></head><frameset rows="100%,*" frameborder="0" border="0">
<frame src="http://www.blackhatworld.com/blackhat-seo/cloaking-content-generators/PUT-YOUR-URL-HERE" marginheight="0" marginwidth="0" scrolling="auto" noresize>
<!-- Note: Make sure to leave quotation marks. -->
</frameset><noframes><p>Sorry, but it appears you are using a Web browser that does not support frames.</p></noframes></html>
|
Edit that in the title tag and where it shows the url to black hat world, then save it as "product.html" and drive traffic to it and they won't be able to see initially that it's an affiliate link.
Those are the two I prefer. I like them because they look like domain.com/product.php or domain.com/product.html and that's usually good enough for me. There are also Meta redirects and Javascript redirects.