You can rewrite requests on one URL to resources available on another URL using an Edge Function.
Edge Functions are files held in the netlify/edge-functions
directory.
import type { Context } from "@netlify/edge-functions";
export default async (request: Request, context: Context) => {
return new URL("/something-to-serve-with-a-rewrite", request.url);
};
You can deploy this and all the other examples in this repo as a site of your own to explore and experiment with, by clicking this button.