Magento商店 - 为分层导航添加nofollow

时间:2010-01-10 18:56:39

标签: php magento nofollow

我会在哪个文件中添加nofollow标签到我的分层导航?

3 个答案:

答案 0 :(得分:3)

找到它:

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

答案 1 :(得分:1)

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

答案 2 :(得分: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设置为分层导航页面头部的元标记机器人。