why the header `mf-original-url` only exist when debugging a worker locally with wrangler? when i de

why the header
mf-original-url
only exist when debugging a worker locally with wrangler?
when i deploy it to cloudflare the header is missing

example:
export default {
    async fetch(request, env: Env): Promise<Response>
    {

        request.headers.forEach((value, key) =>
        {
            console.log(key, value); // prints mf-original-url only locally 
        });
Was this page helpful?