{"id":2388,"date":"2026-05-01T01:30:29","date_gmt":"2026-04-30T17:30:29","guid":{"rendered":"https:\/\/ichwanchandra.com\/blog\/?p=2388"},"modified":"2026-07-17T23:05:16","modified_gmt":"2026-07-17T15:05:16","slug":"managing-robots-txt-across-salesforce-b2c-commerce","status":"publish","type":"post","link":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/","title":{"rendered":"Managing Robots.txt Across Salesforce B2C Commerce Environments"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>In the world of e-commerce, visibility is everything. But what happens when search engines index the wrong version of our site? Imagine a potential customer clicking a Google link, only to land on an unstable sandbox with test-mode payment gateways and an incomplete product catalog. Not only does this create a poor user experience, but it can also destroy trust and cost you real revenue.<\/p>\n\n\n\n<p>The gatekeeper preventing this chaos is a simple text file: <code>robots.txt<\/code>. While it looks basic, managing this file across <strong>Salesforce B2C Commerce<\/strong> environments (Development, Staging, Sandboxes, and Production) is a critical discipline that many teams overlook to ensure only our production site appears in search results.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Anatomy of a Robots.txt File<\/h2>\n\n\n\n<p>Before diving into environment management, let\u2019s review the syntax. The <code>robots.txt<\/code> file lives at the root of your domain (e.g., <code>yourdomain.com\/robots.txt<\/code>). It tells web crawlers (like Googlebot, Bingbot, or Yandex) which parts of our site they can or cannot access. Here is a standard example:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">User-agent: Googlebot\nDisallow: \/nogooglebot\/\n\nUser-agent: *\nAllow: \/\n\nSitemap: https:\/\/yourdomain.com\/sitemap.xml<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>User-agent:<\/strong> Specifies which crawler the rule applies to (<code>*<\/code> means all crawlers).<\/li>\n\n\n\n<li><strong>Disallow:<\/strong> Tells the bot <em>not<\/em> to crawl a specific path.<\/li>\n\n\n\n<li><strong>Allow:<\/strong> Grants access to a path (often used to override a broader <code>Disallow<\/code>).<\/li>\n\n\n\n<li><strong>Sitemap:<\/strong> The location of your XML sitemap, helping bots find important pages.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">The Impact: Leaking Sandbox Environments<\/h2>\n\n\n\n<p>In Salesforce B2C Commerce, we typically have a primary group containing Development, Staging, and Production instances, plus on-demand Sandboxes. The transcript highlights a shocking reality: a simple Google search for <code>dx.commercecloud.salesforce.com<\/code> reveals dozens of live yet index-able sandboxes. Why this is dangerous?<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Test Mode Exposure:<\/strong> Sandboxes often have payment gateways in test mode. A customer trying to buy will hit an error.<\/li>\n\n\n\n<li><strong>Content Leaks:<\/strong> Unreleased campaigns, internal navigation, or half-finished copy become publicly visible.<\/li>\n\n\n\n<li><strong>Duplicate Content:<\/strong> Search engines penalize duplicate content. If our staging site mirrors production, our SEO ranking suffers.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Step-by-Step Configuration in Business Manager<\/h2>\n\n\n\n<p>Here is how to configure <code>robots.txt<\/code> directly in Salesforce B2C Commerce without requiring a full code deployment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Navigate to the SEO Settings<\/h3>\n\n\n\n<p>Go to <strong>Merchant Tools &gt; SEO &gt; Robots<\/strong>. Note that <code>robots.txt<\/code> is defined <strong>per site<\/strong> (e.g., RefArch).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Choose Our Strategy<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Allow all robots:<\/strong> (<code>User-agent: * Disallow:<\/code>) \u2013 Best for <strong>Production<\/strong>.<\/li>\n\n\n\n<li><strong>Block all robots:<\/strong> (<code>User-agent: * Disallow: \/<\/code>) \u2013 Best for <strong>Staging, Dev, and Sandboxes<\/strong>.<\/li>\n\n\n\n<li><strong>Custom directives:<\/strong> Paste your own rules (up to 50,000 characters). Recommended for <strong>Production<\/strong> when we need granular control.<br><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Implement the Safe Defaults<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>For Production:<\/strong> Select <em>Custom<\/em> and paste our official rules (e.g., blocking admin paths, allowing product pages).<\/li>\n\n\n\n<li><strong>For all other environments:<\/strong> Select <em>Block all robots<\/em>. This ensures no search engine indexes our test systems.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Flush the Static Cache<\/h3>\n\n\n\n<p>After applying changes, visit <code>https:\/\/yourdomain.com\/robots.txt<\/code>. If we don&#8217;t see our updates immediately, we must <strong>flush the static cache<\/strong> in Business Manager. Without this, the old cached file will persist.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The &#8220;Online Protected&#8221; Caveat<\/h2>\n\n\n\n<p>If our site is password-protected\u2014set via <strong>Administration &gt; Sites &gt; Manage Sites &gt; [Site] &gt; Site Status<\/strong>\u2014Salesforce automatically generates a <code>robots.txt<\/code> that blocks all bots. This is convenient but risky.<\/p>\n\n\n\n<p><strong>The Warning:<\/strong> If we ever disable password protection for testing or an integration, Salesforce stops generating that file. Our previous SEO Robots settings will instantly become active. If those settings were &#8220;Allow all&#8221; on a staging site, they will be indexed immediately. <strong>Always keep a manual &#8220;Block all&#8221; configuration as a backup.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Deployment: From Staging to Production<\/h2>\n\n\n\n<p>A common point of confusion is <em>where<\/em> to configure the production settings. We do not log directly into Production to edit the <code>robots.txt<\/code>. Instead, follow this pattern:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Log into our <strong>Staging instance<\/strong>.<\/li>\n\n\n\n<li>Navigate to the <strong>SEO Robots<\/strong> settings.<\/li>\n\n\n\n<li>Define the rules for both <strong>Staging<\/strong> (Block all) and <strong>Production<\/strong> (Custom).<\/li>\n\n\n\n<li>Rely on <strong>data replication<\/strong>. The system preferences for each site replicate to Production automatically.<\/li>\n<\/ol>\n\n\n\n<p>If we prefer to store the file in our code base (cartridge), place it under <code>static\/default\/robots.txt<\/code>. However, this requires a full deployment (code review, tests, replication) for every change. For quick fixes, editing directly in Business Manager is far more efficient.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Takeaways<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>The Risk Is Real:<\/strong> Unprotected staging or sandbox environments are frequently indexed by Google, leading to test checkouts and broken campaigns appearing in public search results.<\/li>\n\n\n\n<li><strong>Syntax Simplicity:<\/strong> The <code>robots.txt<\/code> relies on three core directives: <code>User-agent<\/code> (which bot), <code>Disallow<\/code> (block), and <code>Allow<\/code> (permit), plus <code>Sitemap<\/code> (location of your XML sitemap).<\/li>\n\n\n\n<li><strong>Environment Strategy:<\/strong> Production should use a <strong>custom<\/strong> <code>robots.txt<\/code> for granular control. All non-production environments (Staging, Dev, Sandboxes) should be set to <strong>block all robots<\/strong>.<\/li>\n\n\n\n<li><strong>Password Protection Override:<\/strong> If a site is set to &#8220;Online Protected&#8221; in Business Manager, Salesforce auto-generates a blocking <code>robots.txt<\/code>. However, if we remove that password, our manual SEO settings immediately take over.<\/li>\n\n\n\n<li><strong>Deployment via Data Replication:<\/strong> <code>robots.txt<\/code> settings are configured in the staging instance but pushed to production via system preferences and data replication\u2014not just code deployment.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Managing <code>robots.txt<\/code> across multiple Salesforce B2C environments is not just an SEO &#8220;nice-to-have&#8221;\u2014it is a technical necessity. A single miss-configured sandbox can lead to lost sales, confused customers, and damaged brand reputation.<\/p>\n\n\n\n<p><strong>Our action plan:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Audit immediately:<\/strong> Google search our Salesforce subdomains to see if any sandboxes are exposed.<\/li>\n\n\n\n<li><strong>Set strict defaults:<\/strong> Block all crawlers on every non-production environment.<\/li>\n\n\n\n<li><strong>Document overrides:<\/strong> If we use &#8220;Online Protected&#8221; mode, document what happens when the password is removed.<\/li>\n\n\n\n<li><strong>Test the cache:<\/strong> Always verify <code>robots.txt<\/code> live after flushing static cache.<\/li>\n<\/ol>\n\n\n\n<p>By treating <code>robots.txt<\/code> as a critical environment control\u2014not an afterthought\u2014we ensure that when customers search for our site, they always land on the real, production-ready store, ready to buy.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the world of e-commerce, visibility is everything. But what happens when search engines index the wrong version of our site? Imagine a potential customer clicking a Google link, only to land on an unstable sandbox with test-mode payment gateways and an incomplete product catalog. Not only does this create a poor user experience, but it can also destroy trust and cost you real revenue.<\/p>\n","protected":false},"author":1,"featured_media":2446,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20,13,8],"tags":[],"class_list":["post-2388","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-backend","category-ecommerce","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Managing Robots.txt Across Salesforce B2C Commerce Environments - Ichwan Chandra<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Managing Robots.txt Across Salesforce B2C Commerce Environments - Ichwan Chandra\" \/>\n<meta property=\"og:description\" content=\"In the world of e-commerce, visibility is everything. But what happens when search engines index the wrong version of our site? Imagine a potential customer clicking a Google link, only to land on an unstable sandbox with test-mode payment gateways and an incomplete product catalog. Not only does this create a poor user experience, but it can also destroy trust and cost you real revenue.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/\" \/>\n<meta property=\"og:site_name\" content=\"Ichwan Chandra\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-30T17:30:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-17T15:05:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2026\/05\/managing-robots-txt-file-for-sfcc-b2c-commerce.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1408\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ichwan Chandra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ichwan Chandra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/\"},\"author\":{\"name\":\"Ichwan Chandra\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#\\\/schema\\\/person\\\/2fa69a7a1008a3369584752194b063d5\"},\"headline\":\"Managing Robots.txt Across Salesforce B2C Commerce Environments\",\"datePublished\":\"2026-04-30T17:30:29+00:00\",\"dateModified\":\"2026-07-17T15:05:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/\"},\"wordCount\":905,\"image\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/managing-robots-txt-file-for-sfcc-b2c-commerce.png\",\"articleSection\":[\"Backend\",\"E-commerce\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/\",\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/\",\"name\":\"Managing Robots.txt Across Salesforce B2C Commerce Environments - Ichwan Chandra\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/managing-robots-txt-file-for-sfcc-b2c-commerce.png\",\"datePublished\":\"2026-04-30T17:30:29+00:00\",\"dateModified\":\"2026-07-17T15:05:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#\\\/schema\\\/person\\\/2fa69a7a1008a3369584752194b063d5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/managing-robots-txt-file-for-sfcc-b2c-commerce.png\",\"contentUrl\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/managing-robots-txt-file-for-sfcc-b2c-commerce.png\",\"width\":1408,\"height\":768,\"caption\":\"managing robots txt file for sfcc b2c commerce\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/managing-robots-txt-across-salesforce-b2c-commerce\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Managing Robots.txt Across Salesforce B2C Commerce Environments\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/\",\"name\":\"Ichwan Chandra\",\"description\":\"In a lifelong learning mode\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#\\\/schema\\\/person\\\/2fa69a7a1008a3369584752194b063d5\",\"name\":\"Ichwan Chandra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g\",\"caption\":\"Ichwan Chandra\"},\"sameAs\":[\"https:\\\/\\\/ichwanchandra.com\\\/blog\"],\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/author\\\/isuchan193\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Managing Robots.txt Across Salesforce B2C Commerce Environments - Ichwan Chandra","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:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/","og_locale":"en_US","og_type":"article","og_title":"Managing Robots.txt Across Salesforce B2C Commerce Environments - Ichwan Chandra","og_description":"In the world of e-commerce, visibility is everything. But what happens when search engines index the wrong version of our site? Imagine a potential customer clicking a Google link, only to land on an unstable sandbox with test-mode payment gateways and an incomplete product catalog. Not only does this create a poor user experience, but it can also destroy trust and cost you real revenue.","og_url":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/","og_site_name":"Ichwan Chandra","article_published_time":"2026-04-30T17:30:29+00:00","article_modified_time":"2026-07-17T15:05:16+00:00","og_image":[{"width":1408,"height":768,"url":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2026\/05\/managing-robots-txt-file-for-sfcc-b2c-commerce.png","type":"image\/png"}],"author":"Ichwan Chandra","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ichwan Chandra","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#article","isPartOf":{"@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/"},"author":{"name":"Ichwan Chandra","@id":"https:\/\/ichwanchandra.com\/blog\/#\/schema\/person\/2fa69a7a1008a3369584752194b063d5"},"headline":"Managing Robots.txt Across Salesforce B2C Commerce Environments","datePublished":"2026-04-30T17:30:29+00:00","dateModified":"2026-07-17T15:05:16+00:00","mainEntityOfPage":{"@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/"},"wordCount":905,"image":{"@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#primaryimage"},"thumbnailUrl":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2026\/05\/managing-robots-txt-file-for-sfcc-b2c-commerce.png","articleSection":["Backend","E-commerce","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/","url":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/","name":"Managing Robots.txt Across Salesforce B2C Commerce Environments - Ichwan Chandra","isPartOf":{"@id":"https:\/\/ichwanchandra.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#primaryimage"},"image":{"@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#primaryimage"},"thumbnailUrl":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2026\/05\/managing-robots-txt-file-for-sfcc-b2c-commerce.png","datePublished":"2026-04-30T17:30:29+00:00","dateModified":"2026-07-17T15:05:16+00:00","author":{"@id":"https:\/\/ichwanchandra.com\/blog\/#\/schema\/person\/2fa69a7a1008a3369584752194b063d5"},"breadcrumb":{"@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#primaryimage","url":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2026\/05\/managing-robots-txt-file-for-sfcc-b2c-commerce.png","contentUrl":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2026\/05\/managing-robots-txt-file-for-sfcc-b2c-commerce.png","width":1408,"height":768,"caption":"managing robots txt file for sfcc b2c commerce"},{"@type":"BreadcrumbList","@id":"https:\/\/ichwanchandra.com\/blog\/managing-robots-txt-across-salesforce-b2c-commerce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ichwanchandra.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Managing Robots.txt Across Salesforce B2C Commerce Environments"}]},{"@type":"WebSite","@id":"https:\/\/ichwanchandra.com\/blog\/#website","url":"https:\/\/ichwanchandra.com\/blog\/","name":"Ichwan Chandra","description":"In a lifelong learning mode","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ichwanchandra.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ichwanchandra.com\/blog\/#\/schema\/person\/2fa69a7a1008a3369584752194b063d5","name":"Ichwan Chandra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g","caption":"Ichwan Chandra"},"sameAs":["https:\/\/ichwanchandra.com\/blog"],"url":"https:\/\/ichwanchandra.com\/blog\/author\/isuchan193\/"}]}},"_links":{"self":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts\/2388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/comments?post=2388"}],"version-history":[{"count":20,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts\/2388\/revisions"}],"predecessor-version":[{"id":2769,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts\/2388\/revisions\/2769"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/media\/2446"}],"wp:attachment":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/media?parent=2388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/categories?post=2388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/tags?post=2388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}