根据URL参数限制Google机器人的访问
例如,我有以下链接:
http://broodds.com/index.php/en/component/bet/?view=oddsdetails&bet_id=4e9dc53b96df3&odds=q1
如果view
是oddsdetails
,我不想授予对Google机器人的访问权限,是否可以禁用它。我正在使用 Joomla 框架,所以已经有一个 robots.txt,如果可能的话我想扩展它。
For example I have the following link:
http://broodds.com/index.php/en/component/bet/?view=oddsdetails&bet_id=4e9dc53b96df3&odds=q1
I don't want to give access to the Google bot if the view
is oddsdetails
, is it possible to disable that. I'm using Joomla framework, so already there is a robots.txt, I want to extend that if it's possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在模板的 index.php
模板中,您可以使用以下内容:
此外,如果您想让机器人继续查看此页面之外的内容,那么什么是最好是使用:
这意味着Google不会索引该页面,但它将继续转到任何附属链接。 NONE 只是告诉 Google 完全忽略此页面。
In your template within the index.php
<head></head>
of your template you could use this:additionally, if you want to allow the robot to continue looking beyond this page, then what's best is to use:
This means Google won't index this page, but it will continue to go to any subsidiary links. NONE just tells Google to completely ignore this page.
您可能需要考虑在谷歌网站管理员工具中使用参数处理,该工具适用于这些类型的网址。
You may want to consider using parameter handling in google webmaster tools which is for these types of urls.