Skip to Content

SEO Reference

This reference lists all search engine optimization (SEO) configuration options in Momen. Configure these parameters to improve how your Web application is indexed and ranked by search engines such as Google.

For setup workflows, see Domain, SEO & Integration. For rendering mode selection, see Rendering Modes.

All SEO settings take effect only after the project is published. In CSR mode, page-level SEO configurations are not available.


1. Global Configuration

Global settings are in Settings → SEO and apply to all pages in the project.

1.1 Rendering Pattern

Determines when and how pages are rendered. Directly impacts performance and SEO.

ModeWhen RenderedInitial LoadSEOPlan Availability
CSRBrowserSlowPoorAll plans
SSGAt publish time, stored on CDNVery fastExcellentBasic, Pro, Single Tenant
SSRServer (per request)FastStrongSingle Tenant Server

Rendering pattern options in Momen

1.2 Path Parameter Range (SSG)

For pages with dynamic path parameters (e.g., /blogs/${slug}), configure:

  • Static Data: Fixed URL values entered manually.
  • Database: Values pulled from a data table with optional filter conditions (e.g., published == true).

The merged list drives sitemap generation and SSG pre-rendering.

Database path parameter configuration

1.3 Sitemap

An XML file listing site URLs for search engine crawlers.

ModeAdvantagesDisadvantagesBest For
Real-time updateDynamic; URLs added after visitsMay miss unvisited pagesHigh-traffic, user-driven sites
Pre-generationComplete sitemap at publish timeRequires republish after data changesMarketing sites, blogs, catalogs

Sitemap configuration in Momen

1.4 robots.txt

A root-level text file that tells crawlers which paths to allow or disallow.

  • Configure standard robots directives in the SEO panel.
  • Example:
    User-agent: * Disallow: /admin/

robots.txt configuration in Momen

1.5 Custom Global Header / Body

Inject custom tags into the HTML <head> or before </body>.

Typical uses:

  • Third-party analytics (Google Analytics, etc.)
  • Global meta verification tags

Custom header/body configuration in Momen


2. Page-Level Configuration

Page-level settings are in each page’s property panel and apply only to that page.

2.1 TDK (Title, Description, Keywords)

Core metadata for search result cards.

ParameterGuidelinesRole
Title~60 characters; include brand and primary keywordBrowser tab title and search result headline
Description~150 characters; summarize page contentSearch result snippet text
Keywords3–5 comma-separated terms; avoid stuffingHelps classify page topic

SEO TDK configuration in Momen

2.2 Social Media (Open Graph & X Cards)

Controls how the page appears when shared on social platforms.

PropertyMeta TagMomen Configuration
Titleog:titleCard title (defaults to page Title)
Descriptionog:descriptionCard summary (defaults to page Description)
Imageog:imageShare thumbnail image

Momen also supports X Cards for the X platform. Both can be enabled simultaneously.

Social media content configuration in Momen

2.3 Canonical URL

Specifies the preferred URL when duplicate or similar content exists at multiple paths.

<link rel="canonical" href="https://www.example.com/blog/main-page" />

Prevents search engines from splitting ranking authority across duplicate URLs.

2.4 H Tags

Heading tags (H1H6) define document structure for crawlers.

  • One H1 per page: Assign the primary page title to a single H1.
  • Sequential hierarchy: Use H2 for sections, H3 for subsections — do not skip levels.

H tags configuration in Momen

2.5 Image Alt Attributes

Alternative text describes image content for crawlers and accessibility.

  • Configure in the image component’s ALT property panel field.
  • Use descriptive, factual text — not keyword stuffing.

Image ALT attribute configuration in Momen


3. Plan Availability Summary

PlanRendering PatternsPage-Level SEO
FreeCSRNot available
BasicCSR, SSGAvailable (SSG)
ProCSR, SSGAvailable (SSG)
Single Tenant ServerCSR, SSR, SSGAvailable (SSG/SSR)
Last updated on