如何为google和其他搜索引擎制作url"no-follow"?

How to make url "no-follow" for google and other search engines?

我想为 google 和其他搜索引擎创建 url "no-follow"。

注:此url没有link。那我该怎么做呢?请帮忙

我也读到了 robot.txt。与google"no-follow"有关吗? 请解释并提供一些细节。

谢谢!

要隐藏 link 以便机器人不关注它(通常您会在论坛中找到它,他们不希望人们为了自己的 SEO 目的而尝试使用该论坛),只需使用rel 属性:

<a href="/xyz/user" rel="nofollow">user</a>

从 google here 阅读更多内容。

编辑
如果你想在你的网站上隐藏一个完整的页面 (URL) 那么你可以使用一个 robots.txt 文件放在你的 public webroot:

robots.txt

User-agent: *
Disallow: /xyz/user

您可以使用像 this one 这样的在线 robots.txt 测试器来确认它是否有效。 (Google 也有一个 robots.txt 测试仪)。