Heres some things you can do to profit off people stealing your landing page:
Ideas to expand on this:
1. If you go the link replacing route set the window.status on mouse over to the value of their link so when they view the page and mouseover, they still see their link, even though it actually links to yours.
2. Don't replace links/redirect 100% of the time. Just replace them 1/2 or 1/3 the time. This way you basically just take a cut, and they have less of a chance of finding out. If your lucky they'll still make a profit, and continue running the campaign. You'll get tons of free clicks.
3. Encrypt the javascript. You can use this to encrypt it:
Javascript Encoder
Encode it and put it in your page with some HTML comments above that say its for the image rollovers or something. Or actually encode your rollever JS with it and that way if the delete it they delete the rollover part too and stuff breaks.
4. Put the code multiple places in your site, so if they remove it once another still fires.
5. Give your landing pages out for free to newbs you hate (Digital Point)
This checks to see if the page is hosted at google.com. If its not it redirects to google.com. The indexOf needs to be the base domain, so the redirect doesn't fire on URLs with extra params and stuff.<script>
if(window.location.href.indexOf('google.com') == -1)
{
window.location='http://google.com';
}
</script>
Checks the href value of your affiliate link. If its not your affiliate link then it changes it to your affiliate link. The script part must go BELOW the link itself or in onLoad in the body tag.<a id="test" href="http://lol.com">test link</a>
<script>
if(document.getElementById('test').href != 'http://google.com') {
document.getElementById('test').href = 'http://google.com';
}
</script>
Ideas to expand on this:
1. If you go the link replacing route set the window.status on mouse over to the value of their link so when they view the page and mouseover, they still see their link, even though it actually links to yours.
2. Don't replace links/redirect 100% of the time. Just replace them 1/2 or 1/3 the time. This way you basically just take a cut, and they have less of a chance of finding out. If your lucky they'll still make a profit, and continue running the campaign. You'll get tons of free clicks.
3. Encrypt the javascript. You can use this to encrypt it:
Javascript Encoder
Encode it and put it in your page with some HTML comments above that say its for the image rollovers or something. Or actually encode your rollever JS with it and that way if the delete it they delete the rollover part too and stuff breaks.
4. Put the code multiple places in your site, so if they remove it once another still fires.
5. Give your landing pages out for free to newbs you hate (Digital Point)