Sygnal Hyperflow
Micro-Consulting
  • 📗Overview
    • Hyperflow v2.0
    • What's New?
  • 📗CORE FEATURES
    • Overview
    • SEO Enhancements
    • Hyperflow 2 API
    • Logging
  • 📗HYPERFLOW APPS
    • Hyperflow Monitor
      • API
      • Alert Setup
    • Hyperflow Locale-Specific Domains
    • Hyperflow LLMS
      • Setting up LLMS.TXT
      • Setting up Markdown Pages
      • Hyperflow LLMS API
      • Future
    • Hyperflow CMS Preview
    • Hyperflow Files
    • Hyperspeed
  • 📗INSTALLATION
    • Hyperflow Setup
    • Cloudflare DNS Setup
      • GoDaddy
    • Hyperflow Installation
    • Micro-service RPC Interface
    • Monitoring & Maintenance Setup
  • 📗HYPERSPEED
    • About Hyperspeed
    • Hyperspeed Releases
    • Hyperspeed Caching Features
      • Purge Cache on Site Publish
    • Hyperspeed Security Features
    • Hyperspeed SEO Features
    • Hyperspeed Advanced & Custom Features
    • Hyperspeed Monitoring & Maintenance
    • Additional Notes
      • Hyperspeed API
      • Monitoring
      • Information
      • JS
      • CSS
      • Hyperflow Purge Cache
        • Purge Triggers
        • Purge HTML Only
        • Quickstart
      • Content Coverage
      • Special File Handling
      • Caching
      • Image Handler
      • Dev Setup
      • Hyperflow Inline SVGs
      • Hyperflow Image Optimization
    • Hyperflow Editor
    • Future
    • Webflow Notes
    • Troubleshooting
  • 📗ADVANCED HYPERSPEED
    • Kingside Castle (O-O)
    • Queenside Castle (O-O-O)
Powered by GitBook
On this page
  • HTML Enhancements
  • Adds Open Graph <og:url>
  • Removes Conditionally Hidden Elements
  • HTTP Response Header Enhancements
  • Performance Enhancements
  • Edge Caching Support
  • Sitemap.xml Enhancements
  • changefreq
  • lastmod
  • priority
  • Sitemap Index
  • Technical Notes
  1. CORE FEATURES

SEO Enhancements

Hyperflow 2 SEO Enhancements

PreviousOverviewNextHyperflow 2 API

Last updated 17 days ago

HTML Enhancements

Adds Open Graph <og:url>

Automatically adds the <og:url> based on the Webflow canonical.

Removes Conditionally Hidden Elements

Anything that is conditionally hidden is still in the page and can pollute SEO. To prevent this we remove these elements fully.

HTTP Response Header Enhancements

Last-Modified

Performance Enhancements

Edge Caching Support

For blazingly fast HTML delivery, Hyperflow can leverage edge caching as a configuration option.

Sitemap.xml Enhancements

Not automatically part of Hyperflow core, but this can be added for a client implementation. Each client implementation here is different.

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
      <loc>http://www.example.com/</loc>
      <lastmod>2005-01-01</lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.8</priority>
   </url>
</urlset> 

changefreq

lastmod

priority

Sitemap Index

In larger sitemaps, it's possible to split the Sitemap into chunks.

This can be beneficial for sites where we are doing modifications like <lastmod> because of the traffic to the KV store to retrieve those dates. In this way we can separate e.g. by CMS Collection.

Technical Notes

Webflow includes a comment in its published HTML at the top of the page, e.g.;

<!-- Last Published: Tue Apr 22 2025 02:47:00 GMT+0000 (Coordinated Universal Time) -->

The date shown here is the date the site was last published. In the case of a CMS page, where the CMS item has been republished, it does not update to reflect that.

📗
https://en.wikipedia.org/wiki/List_of_HTTP_header_fields
https://www.sitemaps.org/protocol.html
https://www.v9digital.com/insights/sitemap-xml-why-changefreq-priority-are-important/