我想设置Cache-Control: no-expire
但仅限于 POST,正确的方法是什么?
答案1
像这样(未经测试):
http {
if ($request_method = 'POST') {
add_header 'Cache-Control' 'no-expire';
}
}
我想设置Cache-Control: no-expire
但仅限于 POST,正确的方法是什么?
像这样(未经测试):
http {
if ($request_method = 'POST') {
add_header 'Cache-Control' 'no-expire';
}
}