0

我有一个通过 Python 动态创建的网页。它的目的是提供图片,所以第一行设置内容类型:

Content-Type: image/png

我想设置 http 标头,特别是缓存控制,但我不太确定内容类型不是 html,所以我确定我不能将 html 样式的标头放入其中。

编辑:代码开始简单:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import string, sys, math, os
print("Content-Type: image/png\n")
4

2 回答 2

1

Cache-Control、Content-Type 等是 HTTP 标头,而不是“html 样式标头”。无论内容类型如何,您都可以使用它们。

于 2012-05-23T21:50:59.190 回答
0
import string, sys, math, os
print("Cache-Control: max-age=" + str(86400 * 3650) + ", public")
print("Content-Type: image/png")
print("\n")

这使资源在十年内到期。

于 2012-05-23T21:32:44.537 回答