Redirects

Redirects allow you to forward traffic from one path to another. Configure redirects inside Static Page Settings to permanently or temporarily move users between routes.

For example, you can redirect /old-page to /new-page using a 301 or 302 status code.

Example: Redirect Rules

{
  "Type": "301",
  "From Path": "/old-page/*",
  "To URL/Destination": "/new-page/"
}

Redirect Types

TypeDescription
301Permanent redirect (caches in browser)
302Temporary redirect (no caching)
307Temporary redirect (preserves HTTP method)
308Permanent redirect (preserves HTTP method)