如何映射 Nginx http 响应头?

如何映射 Nginx http 响应头?

我尝试了几种配置但似乎不起作用,比如......

map $http_x_litespeed_cache_control $nocacheheader {
    default      0;
    no-cache   1;
    }
map $upstream_http_x_litespeed_cache_control $nocacheheader {
    default      0;
    no-cache   1;
    }
map $sent_http_x_litespeed_cache_control $nocacheheader {
    default      0;
    no-cache   1;
    }

页面仍处于缓存状态。正确的格式是什么?

我的 HTTP 响应标头: x-litespeed-cache-control no-cache

相关内容