如何设置Noindex Nofollow标签?

问题描述 投票:0回答:1

如何将 nofollow 和 noindex 标签仅放置在我的 leotheme 生成的页面上。 例如,有页面 www.example.com/home-1.html ,这是页面 www.mysite.com 的克隆。

我尝试将此代码添加到我的 htaccess 中:

SetEnvIf Request_URI "(.*)home-1(.*)" is_private=1
<IfModule mod_headers.c>
  Header add X-Robots-Tag "noindex,nofollow" env=is_private
</IfModule>

但是不起作用。

谢谢

我还能做什么?

.htaccess prestashop nofollow
1个回答
0
投票

标签的正确实现是将其直接插入到页面或您感兴趣的页面中。您不必将其插入到 .htaccess 文件中。

如果您希望模板的所有页面中都没有跟随标记,请在模板头或标题 tpl 文件中插入字符串:

<meta name="robots" content="none" />

但是除非有特定原因,否则不要设置nofollow,只使用noindex。

<meta name="robots" content="noindex"> 
© www.soinside.com 2019 - 2024. All rights reserved.