for individual pages I am trying to find in Magento a way to edit...">

How to edit in Magento <meta name = "robots" content = "NOINDEX, FOLLOW" / "> for individual pages

I am trying to find in Magento a way to edit <meta name="robots" content="NOINDEX,FOLLOW">for individual pages.

Does anyone know how to do this? Please, help.

thank

+3
source share
2 answers

You should be able to do this based on each module, through XML layout files.

For example, if you need to install robots in NOINDEX, FOLLOW, on the popular search page:

  • Find the layout (module) for this particular page -> for example. application / design / interface / your_package / your_theme / layout / catalogsearch.xml

  • Find your page: <catalogsearch_term_popular translate="label">

  • Add the following lines along with other links:

    <reference name="head">
        <action method="setRobots"><value>NOINDEX,FOLLOW</value></action>
    </reference>
    

(checkout, sendfriendemail ..), .

+6

... , NOINDEX/INDEX, FOLLOW/NOFOLLOW .

http://yoast.com/articles/magento-seo/ 3.1.

+1

All Articles