Storefront Next supports serving multiple B2C Commerce sites and locales from a single deployment. This configuration applies whether you operate a single site or multiple sites—in both cases, the multisite middleware handles site and locale resolution. Configure how site and locale identifiers appear in your URLs—in the path, as query parameters, or a combination of both. For single-site storefronts, you can omit identifiers from the URL entirely and let the middleware resolve everything from cookies and headers.
How Multisite URLs Work
Multisite configuration controls how site and locale identifiers appear in your storefront URLs. The url config determines the URL pattern, and the detection config determines how the middleware reads site and locale back from incoming requests.
Configuration is in config.server.ts under three areas:
commerce.sites defines the available sites and their supported locales.
defaultSiteId determines the fallback site when no site can be resolved from the URL, cookie, or header.
url defines the URL pattern, which includes the path prefix, query parameters, and excluded routes.
Default Template Behavior
The Storefront Next template defaults to a convention where all URLs—including the homepage—use site and locale prefixes (for example, /global/en-GB/ for the homepage, /global/en-GB/product/123 for subpages). Requests to bare / are redirected server-side to the default site and locale prefix. This makes all URLs shareable and fully deterministic.
Homepage (/global/en-GB/)
Subpages
URL
Prefixed with site/locale
Includes site/locale prefix or query params
Site resolution
From URL path or query params
From URL path or query params
Shareable?
Yes (deterministic from URL)
Yes (deterministic from URL)
The bare / redirect is handled in the homepage loader (_app._index.tsx), so you can customize the redirect behavior as needed.
Define Your Sites
Sites and locales are defined under commerce.sites in config.server.ts. By default, sites and their locales are retrieved from the MRT Data Store. See MRT Data Store Sites. If the MRT Data Store sites option is turned off, sites and locales are retrieved from config.server.ts.
id — The B2C Commerce site ID. This must match the site ID configured in Business Manager.
defaultLocale — The locale used when no locale can be resolved from the URL, cookie, or header.
defaultCurrency — The fallback currency when no currency preference exists.
supportedLocales — An array of locales available for this site. Each entry includes an id and a preferredCurrency that is applied when the user selects that locale.
supportedCurrencies — The currencies available for manual selection on this site.
defaultSiteId — Defined at the app level, this determines which site is used on a first visit when no site_id cookie exists.
Keep the i18n.supportedLngs array in sync with the locale id values across all entries in commerce.sites[].supportedLocales. A mismatch causes the locale switcher to show unsupported locales or hide valid ones.
Note
MRT Data Store Sites
On by default. When commerce.sitesFromDal is on, live site data synced through the MRT Data Store replaces the static commerce.sites for site, locale, and currency resolution, resolved per request. defaultSiteId, siteAliasMap, and localeAliasMap stay static and derived from config, never from the MRT Data Store. Set the flag to false to keep the static commerce.sites authoritative.
Fallback behavior. When the middleware can’t get site data from the MRT Data Store, the storefront keeps serving the static commerce.sites and doesn’t fail the request. This fallback applies whenever commerce.sitesFromDal is off, the MRT Data Store entry is unavailable, the payload yields no usable sites, or the usable sites omit the site named by defaultSiteId. That last case logs a warning naming the missing default and the site IDs actually present, so the issue is visible in monitoring.
URL aliasing stays config-owned. The MRT Data Store supplies which sites exist and their locale and currency data, but not how their URLs are aliased. siteContextMiddleware runs after the data store rewrite and derives each resolved site’s routing alias from the config siteAliasMap, keyed by site id (the same key for the data store and static sites), so siteAliasMap and localeAliasMap stay the config-owned source for the :siteId and :localeId URL refs. A per-site alias on the data store payload would be overwritten before routing reads it, so the rewrite drops it at the source. This is what keeps multi-site URLs stable when sites go live from the data store.
1# Opt out via env (see README-CONFIG.md) to keep static commerce.sites authoritative2# PUBLIC__app__commerce__sitesFromDal=false
Configure URL Patterns
The url config in config.server.ts controls how multisite URLs are constructed.
prefix — Path segments prepended to subpage URLs. Use :siteId and :localeId as placeholders that are replaced with the resolved values at URL build time.
search — Query parameters appended to subpage URLs. Use the same :siteId and :localeId placeholder syntax.
excludeRoutes — Glob patterns for routes that skip prefixing (e.g., API resource routes and server actions).
Both prefix and search are optional. Use either, both, or neither depending on your URL strategy.
When url.search is configured, buildUrl injects the search params using searchParams.set(). This overwrites any existing query param with the same key, but preserves all other query params. For example, a product search URL like /product?q=shoes with search: '?lng=:localeId' resolves to /global/product?q=shoes&lng=en-GB—the existing q param is preserved and lng is appended. If your URL already contained a lng param, the configured value takes precedence.
url.prefix and url.excludeRoutes are protected configuration paths. They cannot be overridden via PUBLIC__ environment variables at runtime. Changing these values requires updating config.server.ts and rebuilding the application. This is because the prefix determines the React Router route structure, which is baked into the build.
Warning
Use Alias Maps for Clean URLs
Map B2C Commerce site IDs and locale IDs to shorter, URL-friendly aliases. Define these at the app level in config.server.ts.
With siteAliasMap, the site RefArchGlobal appears as global in URLs: /global/en-GB/product/123
With localeAliasMap, the locale en-GB appears as gb: /global/gb/product/123
Both alias maps are optional. Without them, the raw B2C Commerce IDs appear in URLs.
Configure Site and Locale Detection
The URL config (prefix, search) controls how URLs are built. The detection config controls how site and locale are read back from incoming requests. These must stay in sync.
The middleware checks each source in the specified order and uses the first match.
Each field controls a specific detection behavior:
order—The priority sequence for resolving the value. The middleware tries each source in order and uses the first match. For example, ['path', 'querystring', 'cookie', 'header'] checks the URL path first, then query parameters, then cookies, then HTTP headers.
lookupFromPathIndex—Which URL path segment to read when 'path' is in the order. 0 means the first segment (e.g., /global/en-GB/... → 'global'), 1 means the second segment (e.g., /global/en-GB/... → 'en-GB').
lookupQuerystring—The query parameter name to check when 'querystring' is in the order. For example, 'site' looks for ?site=global, and 'lng' looks for ?lng=en-GB.
lookupCookie—The cookie name to check when 'cookie' is in the order. For example, 'site_id' checks the site_id cookie, and 'lng' checks the lng cookie.
lookupHeader—The HTTP header to check when 'header' is in the order. For example, 'X-Site-Id' checks the X-Site-Id request header, and 'Accept-Language' checks the Accept-Language header.
caches—Where to persist the resolved value. ['cookie'] means the resolved value is stored in a cookie for subsequent requests, ensuring consistency across page navigations.
The query param key for locale must be lng to match the i18next cookie key and default detection config. The query param key for site defaults to site. If you use different keys in your url.search config, update the corresponding lookupQuerystring value in the detection config.
Important
Configure Site-Context Cookies
The siteContext config in config.server.ts controls how site-context cookies are stored. Site-context cookies are site, locale, and currency cookies. The siteContext fields are optional.
currencyCookieName—The cookie name used to persist the shopper’s selected currency. Defaults to 'currency'.
cookieOptions—Cookie attributes that are applied to all three site-context cookies: site, locale, and currency. Valid options include httpOnly, maxAge, secure, sameSite, path, domain, and so on. These options follow the standard Cookie options from React Router. Defaults to { path: '/', sameSite: 'lax', secure: true, httpOnly: true }.
URL Pattern Use Cases
Below are common URL patterns you can achieve by combining prefix, search, and the corresponding detection config overrides. The available placeholders are :siteId and :localeId, which are resolved from the current site and locale, after alias mapping.
Site and Locale in the Path (Default)
1// config.server.ts2export default defineConfig({3 app:{4 url:{5 prefix: "/:siteId/:localeId",6 excludeRoutes:["/resource/**", "/action/**"],7},8 // No detection config override needed — the defaults match this URL pattern.9},10});
This is the default configuration. Both site and locale are visible in every URL, including the homepage. The default detection config expects site at path index 0 and locale at path index 1, which matches this pattern. No detection config override is needed.
Best for: Most multisite storefronts. Clean, fully deterministic URLs.
Page
URL
Homepage (RefArchGlobal, en-GB)
/global/en-GB/
Product (RefArchGlobal, en-GB)
/global/en-GB/product/123
Product (RefArch, en-US)
/us/en-US/product/123
Category (RefArchGlobal, it-IT)
/global/it-IT/category/womens
Locale Only in the Path
1// config.server.ts2export default defineConfig({3 app:{4 url:{5 prefix: "/:localeId",6 excludeRoutes:["/resource/**", "/action/**"],7},8 // Required: locale moved from path index 1 to 0.9 localeDetectionConfig:{lookupFromPathIndex: 0},10 // Recommended: explicitly remove 'path' from site detection order so the11 // middleware doesn't attempt to read a locale string (e.g., 'en-GB') as a12 // site ID. Without this override, site detection will try path index 0,13 // fail to match a valid site, and fall through — which works but is less14 // explicit. Removing 'path' from site detection is the safer and more15 // defensive approach.16 siteDetectionConfig:{order:["querystring", "cookie", "header"]},17},18});
With this pattern, the site is resolved via the detection fallback chain. You must update localeDetectionConfig to set lookupFromPathIndex: 0, because the locale is now the first path segment instead of the second. It is also recommended to explicitly remove 'path' from siteDetectionConfig.order so that the middleware does not attempt to interpret the locale string (for example, en-GB) as a site ID.
Best for: Single-site storefronts with multiple locales, or when the site is determined by cookie or domain.
Page
URL
Homepage (en-GB)
/en-GB/
Product (en-GB)
/en-GB/product/123
Product (en-US)
/en-US/product/123
Category (it-IT)
/it-IT/category/womens
Site in the Path, Locale in Query Params
1// config.server.ts2export default defineConfig({3 app:{4 url:{5 prefix: "/:siteId",6 search: "?lng=:localeId",7 excludeRoutes:["/resource/**", "/action/**"],8},9 // No detection config override required.10 // Site is still at path index 0 (default).11 // Locale detection tries path index 1 first (e.g., 'product'), doesn't find a valid12 // locale, and falls through to querystring where it finds ?lng=en-GB.13},14});
No detection config override is required. The site is still resolved from path index 0. For locale, the default detection tries path index 1 first, doesn’t find a valid locale ID there, and falls through to the ?lng= query parameter.
Best for: Shorter path segments while keeping locale in the URL for shareability.
Page
URL
Homepage (RefArchGlobal, en-GB)
/global/?lng=en-GB
Product (RefArchGlobal, en-GB)
/global/product/123?lng=en-GB
Product (RefArch, en-US)
/us/product/123?lng=en-US
Category (RefArchGlobal, it-IT)
/global/category/womens?lng=it-IT
Everything in Query Params
1// config.server.ts2export default defineConfig({3 app:{4 url:{5 search: "?site=:siteId&lng=:localeId",6 excludeRoutes:["/resource/**", "/action/**"],7},8 // No detection config override required.9 // Path detection reads page path segments (e.g., 'product', '123'), doesn't find10 // valid site/locale IDs, and falls through to querystring where it finds11 // ?site=global&lng=en-GB.12},13});
Without a prefix, React Router doesn’t need site/locale route params in its route definitions. No detection config override is required—the default detection tries path segments first, doesn’t find valid site or locale IDs, and naturally falls through to the query parameters.
Best for: Storefronts that want clean paths and don’t mind query params.
Page
URL
Homepage
/?site=global&lng=en-GB
Product
/product/123?site=global&lng=en-GB
Category
/category/womens?site=us&lng=en-US
Locale Only in Query Params
1// config.server.ts2export default defineConfig({3 app:{4 url:{5 search: "?lng=:localeId",6 excludeRoutes:["/resource/**", "/action/**"],7},8 // No detection config override required.9 // Path detection doesn't find valid site/locale IDs in page path segments10 // and falls through. Site resolves from cookie or header; locale from ?lng=.11},12});
No detection config override is required. The default detection falls through path segments to find the locale in the ?lng= query parameter. Site is resolved from cookie or header via the same fallback chain.
Best for: Single-site storefronts that want locale-aware URLs without path changes.
Page
URL
Homepage
/?lng=en-GB
Product
/product/123?lng=en-GB
Category
/category/womens?lng=it-IT
No Prefix (Single Site)
1// config.server.ts2export default defineConfig({3 app:{4 defaultSiteId: "RefArch",5 commerce:{6 sites:[7{8 id: "RefArch",9 defaultLocale: "en-US",10 defaultCurrency: "USD",11 supportedLocales:[{id: "en-US", preferredCurrency: "USD"}],12 supportedCurrencies:["USD"],13},14],15},16 url:{17 prefix: "/",18 excludeRoutes:["/resource/**", "/action/**"],19},20 // No detection config override required.21 // Path detection doesn't find valid site/locale IDs in page path segments22 // and falls through. Both site and locale resolve from cookie or header.23},24});
This configuration produces the cleanest possible URLs with no site or locale identifiers at all. The multisite middleware still runs, but it resolves site and locale entirely from cookies and headers using the detection fallback chain. On a first visit with no cookies, the defaultSiteId and defaultLocale values from config.server.ts determine which site and locale are used.
No detection config override is required. The default detection tries path segments first, doesn’t find valid site or locale IDs, and falls through to cookies and headers. Because there is only one site and one locale configured, the defaults are always used on the first visit and persisted via cookies for subsequent requests.
Best for: Single-site, single-locale storefronts that don’t need site or locale identifiers in the URL.
Page
URL
Homepage
/
Product
/product/123
Category
/category/womens
Switch Sites, Locales, and Currencies
The Storefront Next template includes built-in switcher components for site, locale, and currency. Each switcher posts to the /action/set-site-context server action, which sets the appropriate cookies and redirects to the updated URL.
Site Switcher
The site switcher component is at src/components/site-switcher. When a shopper selects a new site:
The dropdown calls i18n.changeLanguage with the default locale of the new site.
A POST is submitted to /action/set-site-context with the new siteId and localeId.
The server action sets the site_id and lng cookies and issues a redirect.
The page reloads with the new site and locale applied.
Locale Switcher
The locale switcher component is at src/components/locale-switcher. When a shopper selects a new locale:
The current URL path is stripped of its site/locale prefix using stripPathPrefix.
The new URL is rebuilt with the updated locale using buildUrl.
i18n.changeLanguage is called with the new locale string.
A POST is submitted to /action/set-site-context with the updated localeId.
The server action sets the lng cookie.
React Router triggers a full loader revalidation so all page data is reloaded with the new locale context.
Currency Switcher
When a shopper selects a currency, the currency switcher posts the new currency to /action/set-site-context, which stores it in the currency cookie (default name: currency).
The active currency is resolved using the following priority order:
Priority
Source
1
Currency cookie (shopper’s explicit selection)
2
preferredCurrency from the active locale config
3
defaultCurrency from the active site config
Access Site Context in React Components
Use useSite() to access the current site, language, and currency in React components:
1import{useSite}from "@salesforce/storefront-next-runtime/site-context";23function MyComponent(){4 const{site, language, currency} = useSite();5 // site: Site object (id, supportedLocales, supportedCurrencies, etc.)6 // language: current locale ID (e.g., 'en-GB')7 // currency: current currency code (e.g., 'GBP')8}
useSite() throws if called outside a SiteProvider. In the template, SiteProvider is mounted in root.tsx and wraps the entire app.
useSite also returns the locale object that contains the i18next language string, but Storefront Next doesn’t use it for locale switching. It uses the language value, which represents the language for the app.
Note
Navigate with Site Context
Storefront Next provides multisite-aware navigation utilities that automatically prepend the active site and locale prefix to every URL. Always use these instead of the standard React Router equivalents.
Link and NavLink
Import Link and NavLink from @/components/link instead of from React Router. These components are drop-in replacements that automatically prefix paths with the active site and locale.
1import{Link, NavLink}from "@/components/link";23// Renders as /global/en-GB/product/1234<Link to="/product/123">View Product</Link>56// External URLs and non-string `to` values (e.g., objects with pathname) pass7// through unchanged, so you can use the same component for all link types.8<Link to="https://example.com">External</Link>
useNavigate
Import useNavigate from @/hooks/use-navigate instead of from React Router. The returned navigate function applies the site and locale prefix automatically.
1import{useNavigate}from "@/hooks/use-navigate";23function MyComponent(){4 const navigate = useNavigate();56 // Navigate to a prefixed path string7 navigate("/product/123");89 // Navigate to root (resolves to the site/locale homepage, e.g., /global/en-GB/)10 navigate("/");1112 // Navigate with an object13 navigate({pathname: "/product/123", search: "?color=red"});1415 // History navigation (back/forward) passes through unchanged16 navigate(-1);17}
useCurrentSiteAndLocaleRef
Use the useCurrentSiteAndLocaleRef hook when you need to build URLs manually outside of Link or useNavigate:
Using <Form action="/some-path"> without prefixing produces a URL without the site/locale prefix, which causes a 404 error.
Warning
Important Considerations
Homepage URL uses site and locale prefix. All URLs—including the homepage—use the configured site and locale prefix (e.g., /global/en-GB/). Requests to bare / are redirected server-side to the default site and locale prefix. This redirect is handled in the homepage loader (_app._index.tsx) and can be customized.
URL prefix changes require a rebuild.url.prefix and url.excludeRoutes are protected paths. They can’t be changed via PUBLIC__ environment variables. Update config.server.ts and rebuild the application.
Detection config overrides are only required when path indexes shift. The detection middleware uses a fallback chain—if it doesn’t find a valid site or locale at the current source, it moves to the next one. In most non-default URL patterns, path detection simply fails to match and falls through to querystring or cookie. The only case where an override is required is when a path segment’s position changes (e.g., locale moves from index 1 to index 0 in a locale-only prefix).
Query param keys are not arbitrary. The locale query param key must be lng (matching the i18next cookie). The site key defaults to site. Custom keys require matching updates to the detection config.
Use multisite-aware navigation. Always use Link and NavLink from @/components/link, useNavigate from @/hooks/use-navigate, and buildUrlFromContext for server-side redirects. These automatically apply the URL prefix. Using React Router’s Link or redirect directly produces URLs without the prefix, resulting in 404 errors.
In loaders and actions, use buildUrlFromContext from @/lib/url.server to build redirect URLs:
1import{redirect}from "react-router";2import{buildUrlFromContext}from "@/lib/url.server";34export async function loader({request, context}: LoaderFunctionArgs){5 if(!isAuthenticated){6 // bare redirect('/login') produces a URL without the prefix → 4047 throw redirect(buildUrlFromContext("/login", context));8}9}
Keep i18n and site config in sync. The locale IDs in your i18n.supportedLngs must match the id values in commerce.sites[].supportedLocales. A mismatch causes the locale switcher to show unsupported locales or hide valid ones.
Always include framework routes in excludeRoutes. The /resource/** and /action/** patterns must remain in excludeRoutes. Removing them causes resource routes and server actions to be incorrectly prefixed with site/locale segments.
Prefix React Router Form action values manually. React Router’s <Form> component does not go through buildUrl. If you use <Form action="/some-path">, prefix the action yourself using buildUrl with useConfig and useCurrentSiteAndLocaleRef. See Navigate with Site Context for a code example.