我为社区网站上的搜索设置了OSS。基本设置工作正常,但现在我需要微调它。其中一个重要的部分是确保索引从每个页面保存正确的部分,但忽略所有页面(即页脚)共有的部分,但是这些部分是爬行程序通过链接查找站点的所有部分所必需的。 。我知道opensearchserver.ignore
class:
<div class="opensearchserver.ignore">
This text should not be indexed.
</div>
但由于链接很重要,这样的标签会派上用场:
<div class='noindexbutfollow'>
This will not be indexed but the link {Open Search Server} would be followed
</div>
(正如this thread中讨论的那样。)
这可能吗?