I have 1000 products on my website, and all of them have their own web page, accessible with something like product.php? id = PRODUCT_ID.
On all these pages, I have a link that has a url action.php?id=PRODUCT_ID&referer=CURRNT_PAGE_URL.. so what if I am in product.php? id = 100, this url will become action.php?prod_id=100&referer=/product.php?id=1000, clicking on this url, the user will return toreferer
Now the problem I am facing is that I continue to receive false hits from spiders. Is there a way I can avoid these false hits? I know that I can "type" this url in the robots.txt file, but there are still bots that ignore this. What would you suggest? Any ideas are welcome. Thanks
source
share