Hi,
I have tons of "Empty redirect" on Google Sitemap report. I don't know what's wrong. Now I do not want crawler following the links to merchant site. I want to put rel="nofollow" on jump.php?id=xxxx.
How can I do that?
Thank you
I'm not sure but I think you can ban it in robots.txt too though I'm not sure how successful this is.
hello,
use robots.txt :
User-agent: *
Disallow: /jump.php
it works fine
Hi,
The Buy URL (jump.php) is generated on the main product page, in both the main product section and the price table by the following files:
html/product.php
html/prices.php
To add the nofollow tag, search each of these files for "tapestry_buyURL" (without the quotes). Just infront of each instance you will see the opening:
<a href='
In each of these instances, you can insert the nofollow code as below:
<a rel='nofollow' href='
That should do the trick!
Cheers,
David.