Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的网站中,我包括添加博客的用户。我怎样才能使这些博客在谷歌中可搜索。我只想使博客可搜索。但我不想让剩余的页面可搜索。我怎样才能做到这一点。
问候
在除博客页面之外的所有页面上,将以下内容添加到您的 HTML<head>元素中:
<head>
<meta name="robots" content="noindex">
这将阻止搜索引擎索引该页面。
使用javascript / jquery不是一个选项,因为这是客户端脚本,机器人不会读取。