{"id":336325,"date":"2022-05-20T13:46:55","date_gmt":"2022-05-20T13:46:55","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=336325"},"modified":"2022-05-20T13:47:03","modified_gmt":"2022-05-20T13:47:03","slug":"how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/","title":{"rendered":"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2"},"content":{"rendered":"\n<p>In this guide, we will learn how can we change the robots of a particular page.<\/p>\n\n\n\n<p>There are several options for robots available that you can choose from:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>INDEX, FOLLOW &#8211;<\/strong> If you want web crawlers to index a page\u00a0and follow the links on that page<strong>.<\/strong><\/li><li><strong>NOINDEX, FOLLOW &#8211;<\/strong> If you don\u2019t want web crawlers to index a page but want them\u00a0to follow the links on that page.<\/li><li><strong>INDEX, NOFOLLOW<\/strong> &#8211; If you want web crawlers to index a page\u00a0and don&#8217;t want them\u00a0to follow the links on that page.<\/li><li><strong>NOINDEX, NOFOLLOW<\/strong> &#8211; If you want web crawlers neither\u00a0to index a page nor to follow the links on that page.<\/li><\/ul>\n\n\n\n<p>Now let&#8217;s see how we can set NOINDEX, NOFOLLOW on a particular page programmatically.<\/p>\n\n\n\n<p><strong>Step 1 &#8211;<\/strong> You need to create <strong>di.xml<\/strong> in the below path:<br><strong>app\/code\/Vendor\/ModuleName\/etc\/frontend\/di.xml<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\n\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n    &lt;type name=&quot;Magento\\Framework\\View\\Page\\Config\\Renderer&quot;&gt;\n        &lt;plugin name=&quot;seoRender&quot; type=&quot;Webkul\\Demo\\Plugin\\Robots&quot;\/&gt;\n    &lt;\/type&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p><strong>Step 2 &#8211;<\/strong> Now you need to create <strong>Robots.php<\/strong> in the below path:<br><strong>app\/code\/Vendor\/ModuleName\/Plugin\/Robots.php<\/strong><br>And,  add the below code<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\Demo\\Plugin;\n\nuse Magento\\Framework\\App\\Request\\Http;\nuse Magento\\Framework\\View\\Page\\Config as PageConfig;\nuse Magento\\Framework\\View\\Page\\Config\\Renderer;\n\nclass Robots\n{\n    protected $pageConfig;\n    protected $request;\n    \/**\n     *\n     * @param PageConfig $pageConfig\n     * @param Http $request\n     *\/\n    public function __construct(\n        PageConfig $pageConfig,\n        Http $request\n    ) {\n        $this-&gt;pageConfig = $pageConfig;\n        $this-&gt;request = $request;\n    }\n\n    \/**\n     * Before Render function\n     *\n     * @param Renderer $subject\n     *\/\n    public function beforeRenderMetadata(Renderer $subject)\n    {\n        $fullActionName = $this-&gt;request-&gt;getFullActionName();\n        if ($fullActionName == &#039;catalog_product_view&#039;) {\n            $this-&gt;pageConfig-&gt;setMetadata(&#039;robots&#039;, &#039;NOINDEX,NOFOLLOW&#039;);\n        }\n    }\n}<\/pre>\n\n\n\n<p> That\u2019s all about the setting NOINDEX, NOFOLLOW on specific page . If you have any questions please comment below, and we will try to respond to you. <br>Happy Coding!!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we will learn how can we change the robots of a particular page. There are several options for robots available that you can choose from: INDEX, FOLLOW &#8211; If you want web crawlers to index a page\u00a0and follow the links on that page. NOINDEX, FOLLOW &#8211; If you don\u2019t want web crawlers <a href=\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":375,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[2070,3154,2054],"class_list":["post-336325","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-magento2","tag-meta-tag","tag-seo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"How to set NOINDEX,NOFOLLOW on particular page\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"How to set NOINDEX,NOFOLLOW on particular page\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-20T13:46:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-20T13:47:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Radhika Garg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Radhika Garg\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\"},\"author\":{\"name\":\"Radhika Garg\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/1bfed7985110d44a908d093a4e322727\"},\"headline\":\"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2\",\"datePublished\":\"2022-05-20T13:46:55+00:00\",\"dateModified\":\"2022-05-20T13:47:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\"},\"wordCount\":213,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"Magento2\",\"meta tag\",\"SEO\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\",\"name\":\"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2022-05-20T13:46:55+00:00\",\"dateModified\":\"2022-05-20T13:47:03+00:00\",\"description\":\"How to set NOINDEX,NOFOLLOW on particular page\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/1bfed7985110d44a908d093a4e322727\",\"name\":\"Radhika Garg\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2319613aaa0bc878e7855f009fc5a889134810d78fa0d1e693180b36f82156a3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2319613aaa0bc878e7855f009fc5a889134810d78fa0d1e693180b36f82156a3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Radhika Garg\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/radhika-garg178\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2 - Webkul Blog","description":"How to set NOINDEX,NOFOLLOW on particular page","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/","og_locale":"en_US","og_type":"article","og_title":"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2 - Webkul Blog","og_description":"How to set NOINDEX,NOFOLLOW on particular page","og_url":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-05-20T13:46:55+00:00","article_modified_time":"2022-05-20T13:47:03+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Radhika Garg","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Radhika Garg","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/"},"author":{"name":"Radhika Garg","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/1bfed7985110d44a908d093a4e322727"},"headline":"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2","datePublished":"2022-05-20T13:46:55+00:00","dateModified":"2022-05-20T13:47:03+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/"},"wordCount":213,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["Magento2","meta tag","SEO"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/","url":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/","name":"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2022-05-20T13:46:55+00:00","dateModified":"2022-05-20T13:47:03+00:00","description":"How to set NOINDEX,NOFOLLOW on particular page","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-set-noindex-nofollow-on-specific-page-programmatically-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set NOINDEX, NOFOLLOW on specific page programmatically Magento2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/1bfed7985110d44a908d093a4e322727","name":"Radhika Garg","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2319613aaa0bc878e7855f009fc5a889134810d78fa0d1e693180b36f82156a3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2319613aaa0bc878e7855f009fc5a889134810d78fa0d1e693180b36f82156a3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Radhika Garg"},"url":"https:\/\/webkul.com\/blog\/author\/radhika-garg178\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/336325","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/375"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=336325"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/336325\/revisions"}],"predecessor-version":[{"id":336331,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/336325\/revisions\/336331"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=336325"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=336325"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=336325"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}