1

I have an affiliate site which gets products from 10's of merchants in my niche and compares them, filters them. Some products have reviews, other just user comments, etc.

Lately, google started to penalize affiliate sites, and many of my competing sites dropped heavily in the last year.

So I am trying to prevent this, and I know it's a machine which analyzes my site at the end.

One step I want to take is not hotlink the images provided by the merchants.

I cannot save them all to the filesystem since they are so many, so I am thinking of another thing. This is where I need your opinion:

Instead of having:

<a href="hotlinkedMerchantImage.html">Product Image</a>

I would have something like this:

<a href="myimage.php">My image</a>

The php script would pull the merchant image, load it temporarily, and serve it to the user, until he closes the browser.

This would be a blend of php and javascript I believe, but I am not sure it will serve my purpose.

If it were you, how would you do this? How would you avoid downloading hundreds of images to the filesystem and not hotlink

4

1 回答 1

0

假装它不是热链接而是从您的域提供服务的最简单方法是拥有一个脚本,该脚本将图像的 URL 作为参数并简单地直接加载和流式传输它。这样,它看起来就像是从您的服务器提供的。

但是,尝试避免/利用 Google 的算法通常是让您的网站完全从索引中完全删除而不仅仅是受到惩罚的好方法。要记住的事情。

于 2013-06-07T10:14:08.967 回答