有人可以告诉我在HTML中使用(nofollow&noimageindex)元标记吗?

时间:2018-09-18 09:03:27

标签: html meta-tags

有人可以告诉我在HTML中使用(nofollow&noimageindex)元标记吗?就像,他们具体做什么?

1 个答案:

答案 0 :(得分:1)

<meta name="robots" content="noindex, nofollow, noimageindex">

这只是爬行机器人(如Google的机器人)的信息,不应爬行此页面。因此它不会显示在Google搜索结果中。

nofollow意味着不应在此页面后跟随其他页面的重定向。假设您有index.php,其中包含:

<a href='nofollowedpage.php'>link</a>nofollowedpage.php具有带有nofollow的元。因此,机器人只需单击该链接,但是当它看到带有nofollow的meta时,他将退出并忘记此站点。它以类似的方式工作:

<a href='nofollowedpage.php' rel='nofollow'>link</a>

noimageindex-此标记将阻止索引该页面上您站点或外部站点的图像。