根据URL参数限制Google机器人的访问

发布于 2024-12-11 08:35:22 字数 274 浏览 0 评论 0原文

例如,我有以下链接:

http://broodds.com/index.php/en/component/bet/?view=oddsdetails&bet_id=4e9dc53b96df3&odds=q1

如果viewoddsdetails,我不想授予对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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话墙 2024-12-18 08:35:22

在模板的 index.php 模板中,您可以使用以下内容:

$view = JRequest::getString('view');
if ($view == 'oddsdetail') { echo '<meta name="robots" content="NONE" />'; }

此外,如果您想让机器人继续查看此页面之外的内容,那么什么是最好是使用:

$view = JRequest::getString('view');
if ($view == 'oddsdetail') { echo '<meta name="robots" content="NOINDEX" />'; }

这意味着Google不会索引该页面,但它将继续转到任何附属链接。 NONE 只是告诉 Google 完全忽略此页面。

In your template within the index.php <head></head> of your template you could use this:

$view = JRequest::getString('view');
if ($view == 'oddsdetail') { echo '<meta name="robots" content="NONE" />'; }

additionally, if you want to allow the robot to continue looking beyond this page, then what's best is to use:

$view = JRequest::getString('view');
if ($view == 'oddsdetail') { echo '<meta name="robots" content="NOINDEX" />'; }

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.

深空失忆 2024-12-18 08:35:22

您可能需要考虑在谷歌网站管理员工具中使用参数处理,该工具适用于这些类型的网址。

You may want to consider using parameter handling in google webmaster tools which is for these types of urls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文