Dashboard

Page Rules

Configure rules to modify how your application behaves for specific URLs.

Cache Static Assets

Cache all static files for better performance

Match Type
Regular Expression
Pattern
\.(jpg|jpeg|png|gif|ico|css|js)$

Modified Settings

caching

{
  "enabled": true,
  "ttl": "7d"
}

minification

{
  "css": true,
  "js": true
}

API No-Cache

Prevent caching of API endpoints

Match Type
Regular Expression (Case Insensitive)
Pattern
^/api/

Modified Settings

caching

{
  "enabled": false
}

headers

{
  "add": [
    {
      "name": "Cache-Control",
      "value": "no-store, no-cache"
    }
  ]
}

Redirect Legacy URLs

Redirect old product URLs to new structure

Match Type
Exact Match
Pattern
/old-products

Modified Settings

redirect

{
  "type": 301,
  "url": "/products"
}