Dashboard
Page Rules
Configure rules to modify how your application behaves for specific URLs.
Cache Static Assets
Cache all static files for better performance
\.(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
^/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
/old-products
Modified Settings
redirect
{
"type": 301,
"url": "/products"
}