Forum Moderators: open
I know google could detect that there are a lot of 'buy link' (affiliate link) which redirect visitors to the merchant's website, I could use the idea like the following to avoid google:
----------------------------
The original link: [afflink...] ,
Would be replaced as a javascript:
linkStr="http://aff";
linkStr=linkStr+"link/"+"?"+"affID";
linkStr=linkStr+"1234";
location.href=linkStr;
-----------------------------
any better idea?
However, if you operate ten websites that all sell the same product there are other reasons to get paranoid. ;)
I'm not a frequent poster to the Google News forum, but from what I have read, posts such as 'please help me fool google' or 'how can I spam' are not really welcome. The idea of the forum is more along the lines of analysing google behaviour, and based on that, figuring out legitimate ways to optimise, not spam.
Did you mean to ask "Is linking to pictures from an affiliate website purely for the purpose of bandwidth considered spam?" or are you really saying "I know this is spam, but please help me fool google"?
Shawn
PS Anyone who hangs out at this forum a lot, feel free to contradict if I am wrong...
Back to your second question, jimpoo:
>I know google could detect that there are a lot of 'buy link' (affiliate link)
>any better idea?
That's a different problem than hotlinking images ... however, what about yoursite.com/out.cgi?id=12345? Disallow out.cgi through a robots.txt entry and make the out.cgi a redirect to the corresponding merchant page. That'd pretty safe! Safer than using js ... which would smell fishy.
Not works!
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http://(www\.)?mywebsite\.com [NC]
RewriteRule ^myproductimages/(.*)$ http://merchantwebsite/images/$1 [L,R]
HTH,
Jim