/guide/*
requests to a second Webflow project.example.com/guide/*
to the Worker.example.com/guide/
correctly loads the secondary Webflow site.If your main Webflow site has reached the max page limit, you can use Cloudflare Workers to serve a separate Webflow CMS-driven Guide section from another Webflow project under a shared domain. Here's the setup process:
You need to create a Cloudflare Worker that forwards requests to your separate Webflow site.
Go to the Cloudflare Dashboard and navigate to Workers & Pages > Manage Workers.
Create a new Worker and add a script that proxies requests from /guide/*
(or another subpath) to the secondary Webflow project.
Use the following logic inside your Worker:
Capture incoming requests to /guide/*
.
Modify and forward them to the Webflow-hosted Guide CMS site.
Return the response to users seamlessly.
Once you've added the script:
Now, direct traffic using the Worker:
example.com/guide/*
.Now, configure your main domain (e.g., example.com
) to point to Cloudflare so it correctly handles routing.
www
to Webflow’s proxy-ssl.webflow.com
.example.com/guide/
- it should load content from your second Webflow project.To extend your Webflow CMS limit, use a Cloudflare Worker to forward /guide/*
traffic to a second Webflow project. Then, configure DNS to route everything through Cloudflare and verify correct proxying settings. This allows both sites to function under one domain.