Apache - 如果尚未添加,则添加Cache-Control标头

时间:2014-06-03 09:15:54

标签: apache caching http-headers cache-control

在Apache中,只有在CGI应用程序尚未设置响应标题时,如何设置响应标题?

我需要一种方法来自动将Cache-Control标题添加到我网站上的静态内容中,但我希望CGI应用程序也能够指定自己的Cache-Control标题。

SetEnvIf不能用于此目的,因为它只匹配请求标题。

如果尚未设置标题,是否有某种方法可以有条件地/可选地设置标题?

1 个答案:

答案 0 :(得分:3)

1)配置Apache以将空字符串("")的值附加到Cache-Control标头,以确保响应中包含始终标头。

2)配置Apache只有在仍然设置为空字符串时才设置Cache-Control标头。

<FilesMatch "\.(css|ico|flv|gif|jpeg|jpg|js|pdf|png|swf)$">
  Header append Cache-Control ""
  Header edit Cache-Control "^[, ]*$" "max-age=1800, public"
</FilesMatch>