本文介绍了Googlebot 正在抓取我的网站并在我的评分系统中输入评分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的评分系统允许匿名用户添加评分,但 Google 的抓取工具正在对事物进行评分.
My rating system allows anonymous users to add ratings, but Google's crawler is rating things.
如何确保 Googlebot 不会点击链接?
How can I ensure that Googlebot won't follow the link?
推荐答案
对于任何修改数据的操作(投票、编辑帖子等),您不应接受 GET 请求.您的投票应通过 POST 请求完成,Googlebot 不会执行该请求.
You shouldn't accept a GET request for any action that modifies data (voting, editing a post, etc.). Your voting should be done via a POST request, which Googlebot won't perform.
此 SO 帖子中的更多信息:什么时候用POST,什么时候用GET?
More information in this SO post: When do you use POST and when do you use GET?
这篇关于Googlebot 正在抓取我的网站并在我的评分系统中输入评分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!