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