问题描述
注意到TYPO3仅呈现以下标记组合(取决于设置):
<Meta name = "robots" content = "noindex,nofollow">
<Meta name = "robots" content = "noindex,follow">
<Meta name = "robots" content = "index,nofollow">
它从不渲染:
<Meta name="robots" content="index,follow">
它什么也没呈现。
if ($noIndex === 'noindex' || $nofollow === 'nofollow') {
$manager = $MetaTagManagerRegistry->getManagerForProperty('robots');
$manager->addProperty('robots',implode(',',[$noIndex,$nofollow]));
}
解决方法
由于搜索引擎的工作是为所有可用文档建立索引并跟踪所有链接以获取所有文档,因此这是默认行为。
仅当您想要其他行为时,才需要声明它。