如何在 nginx 配置中全局设置 POST 上的 Cache-Control: no-expire?

如何在 nginx 配置中全局设置 POST 上的 Cache-Control: no-expire?

我想设置Cache-Control: no-expire但仅限于 POST,正确的方法是什么?

答案1

像这样(未经测试):

http {
   if ($request_method = 'POST') {
      add_header 'Cache-Control' 'no-expire';
   }
}

相关内容