Last update:
June 25, 2025
SEO¶
Currently, the only configurable setting is the priority order for resolving SEO entries when multiple matches exist for a given permalink.
Node | Default value | Description |
---|---|---|
SeoInfoResolver:ObjectTypePriority | "Pages", "ContentFile", "Catalog", "Category", "CatalogProduct" | This setting defines the priority order for resolving SEO entries when multiple types match the same permalink. |
Example
Configure the priority order for resolving SEO entries using the Seo.SeoInfoResolver.ObjectTypePriority
key. The system will use this order to determine which entity to associate with a given permalink when multiple matches exist.
appsettings.json
"Seo": {
"SeoInfoResolver": {
"ObjectTypePriority": [
"Pages",
"ContentFile",
"Catalog",
"Category",
"CatalogProduct"
]
}
}
In the above example, if both a Page
and a Category
are associated with the same permalink, the system will resolve it to the Page
because it has higher priority in the list.