> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Seo User Config # Type: Seo User Config Object # Link: https://dev.wix.com/docs/api-reference/business-management/marketing/seo/seo-user-config/seo-user-config-object.md ## Description: Site-level SEO configuration. Controls URL structure and non-existent page behavior to optimize how search engines index and resolve a site's pages. ## Schema: ```json Type: Seo User Config Object | type: SeoUserConfig Description: Site-level SEO configuration. Controls URL structure and non-existent page behavior to optimize how search engines index and resolve a site's pages. - name: id | type: string | description: SEO configuration ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the SEO configuration is updated. To prevent conflicting changes, the current `revision` must be passed when updating the SEO configuration. Ignored when creating an SEO configuration. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the SEO configuration was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the SEO configuration was last updated. - name: shouldFlattenUrlHierarchy | type: boolean | description: Whether to flatten page URLs. When `true`, all pages use flat URLs regardless of their position in the page hierarchy. For example, a subpage at `/parent/child-page` is accessible at `/child-page`. When `false`, page URLs reflect the full parent-child hierarchy. This setting only affects URL structure, it doesn't change the physical page hierarchy in the site's page tree. Default: `false` - name: value | type: boolean | description: - name: shouldUsePartialRouteMatch | type: boolean | description: Whether non-existent pages return a `200` status code instead of a `404`. When `false`, requests to non-existent pages return an HTTP `404` status code. This setting is the SEO-recommended behavior that correctly signals missing pages to search engines. When `true`, non-existent page requests return a `200` status code. Avoid this setting unless you have a specific SEO reason, as it prevents search engines from correctly detecting missing pages. Default: `false` for sites created on or after September 1, 2024. `true` for sites created before that date. ```