Skip to main content

Node Inputs

Required Fields

Site Configuration ID:
The unique identifier for your Fasterize site configuration.
Example: "site_12345"
Source URLs:
A list of original URLs to be redirected or rewritten.
Example: ["https://example.com/old-page1", "https://example.com/old-page2"]
Target URLs:
A list of destination URLs. Must match the number of source URLs.
Example: ["https://example.com/new-page1", "https://example.com/new-page2"]

Optional Fields

Redirect Type:
The HTTP redirect status code to use.
Available options:
  • 301: Permanent redirect
  • 302: Temporary redirect
    Default: 301

Node Output

Rewriting Results:
A detailed report of the URL rewriting operations, including status and any errors.
Example Output:
{
  "results": [
    {
      "source_url": "https://example.com/old-page1",
      "target_url": "https://example.com/new-page1",
      "redirect_type": "301",
      "status": "success"
    },
    {
      "source_url": "https://example.com/old-page2",
      "target_url": "https://example.com/new-page2",
      "redirect_type": "301",
      "status": "success"
    }
  ]
}

Node Functionality

The Fasterize Bulk URL Rewriting node:
  • Manages URL redirects at the edge level for instant implementation.
  • Supports both 301 (permanent) and 302 (temporary) redirects.
  • Processes multiple URL redirects in a single operation.
  • Eliminates the need for server-side redirect configuration.
  • Provides immediate results without cache clearing.
I