2

我将查看哪个文件以将 nofollow 标签添加到我的分层导航?

4

3 回答 3

3

找到了:

/app/design/frontend/default/YOURTEMPLATENAME/template/catalog/layer

于 2010-01-10T19:30:12.370 回答
1

是的,像 magento 1.4*,pp/design/frontend/default/base/YOURTEMPLATENAME/template/catalog/layer 修改 filter.phtml,state.phtml 以添加 nofllow 标签。那是!

于 2010-05-23T02:34:22.383 回答
0

打开或创建app/design/frontend/<package>/<theme>/layout/local.xml并添加以下 XML 信息:

<catalog_category_layered>
    <reference name="head">
        <action method="setRobots"><meta>NOFOLLOW</meta></action>
    </reference>
</catalog_category_layered>
<catalog_category_layered_nochildren>
    <reference name="head">
        <action method="setRobots"><meta>NOFOLLOW</meta></action>
    </reference>
</catalog_category_layered_nochildren>

这会将 NOFOLLOW 设置为分层导航页面头部的元标记机器人。

于 2011-11-22T13:42:44.553 回答