我正在使用以下命令运行busybox httpd:
busybox httpd -p 80 -h /var/www
它可以工作,但是我需要将缓存控制标头设置为无缓存。
目前我的服务器仅附加这些标头:
HTTP/1.0 200 OK
Content-type: text/html
Date: Thu, 28 Jun 2018 06:58:08 GMT
Connection: close
Accept-Ranges: bytes
Last-Modified: Thu, 28 Jun 2018 06:57:43 GMT
Content-Length: 45
如何配置我的busybox httpd 服务器以追加
Cache-Control: no-cache
标题?