The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

Block Landing Page Script

aaronbana

New Member
affiliate
Hello, is there such script that we could use to stop people from copying our landing pages?. Or is there any advice what are the necessary steps to safe guard your landing page?.
 
I made a guide inside The Dojo about it. The tool will redirect traffic from the thief to your own offer, giving you free traffic and free conversions and the thief won't even know ;) I will help you with the implementation once you get inside The Dojo.
 
There is NO way to stop copying. Once it is rendered in a browser this can be copied. Period!
 
There is NO way to stop copying. Once it is rendered in a browser this can be copied. Period!

Exactly. But you can bother the non-techy guys and they will give up. Or you can try the approach of letting the thief copy the code intentionally and benefit from that later by getting the traffic back. Both won't work if the thief is tech savy, but fortunately most guys in IM are not.
 
I usually use .htaccess to block some "unwanted" traffic...

Goes like this:

Code:
RewriteEngine On 
RewriteCond %{HTTP_REFERER} ^http://.*amazonaws\.com [NC,OR] 
RewriteCond %{REMOTE_HOST} ^.*\.compute-1\.amazonaws\.com$ [NC,OR]
RewriteCond %{REMOTE_HOST} ^.*\.anonymox\.net$ [NC,OR]
RewriteCond %{REMOTE_HOST} ^.*\.anonymouse\.org$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} "AISearchBot" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "woriobot" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "heritrix" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "NetSeer" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} "Nutch" [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} a((ip)?bot|lexfDownload|mzn_assoc|SPSeek) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} blekko [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} c(herry|on(tentSmartz|veras)|rescent|rawl) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} d(um|II|ataCha) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} e(asyDL|-?mail|x(abot|tractorPro)) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} foobot [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} g(i(gabaz|joel)|rub) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} h(atena|tt(pdown|rack)|tmlparser) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} i(EAuto|ndy.?Library) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} l(arbin|exiBot|ink(.?walker)?|mcrawler|ocator|wp(-request|::simple)) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} m(-crawl|j12bot|i(crosoft(\.URL|-ATL-Native|-CryptoAPI|-WebDAV-MiniRedir|URL\ Control)|ssigua)|o(gren|rpheus)|SProxy|echanize) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} n(etMechanic|ICErsPRO|utch) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} o(penfind|ffline|omni[-]?Explorer) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} p(hpcrawl|ingALink|sbot|ycurl|OE-Component-Client-HTTP) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} r(obot|ufus) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} s(chmozilla|coutjet|earchIt|eek(bot|er)|ogou|proose|imple|l(eipnir|ySearch)|weeper|zukacz) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} t(eleport|ScholarsBot) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} url(SpiderPro|lib) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} v(oyager|b.?project) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} w(eb(Account|Capt|Copier|rank|Whack|Strip|Zip|ster|bandit|\ services\ client\ proto)) [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} ^User-Agent [NC,OR] 
RewriteCond %{HTTP_USER_AGENT} !(Giga(blast|bot)|Walhello|inktomi|teoma) [NC] 
RewriteRule .? - [F]
 
banners
Back