我有一个通过 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")