我尝试使用这个

@app.after_request
def add_header(response):
    response.headers['Cache-Control'] = 'max-age=300'
    return response

但这会导致出现重复的Cache-Control header 。我只想要max-age = 300,而不是max-age = 1209600行!
$ curl -I http://my.url.here/
HTTP/1.1 200 OK
Date: Wed, 16 Apr 2014 14:24:22 GMT
Server: Apache
Cache-Control: max-age=300
Content-Length: 107993
Cache-Control: max-age=1209600
Expires: Wed, 30 Apr 2014 14:24:22 GMT
Content-Type: text/html; charset=utf-8

最佳答案

使用 response.cache_control object;这是 ResponseCacheControl() instance,可让您直接设置各种缓存属性。此外,如果已经有一个重复的标题,请确保不要添加重复的标题。

@app.after_request
def add_header(response):
    response.cache_control.max_age = 300
    return response

关于python - 使用Flask,如何修改ALL输出的Cache-Control header ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23112316/

10-15 06:42