如何获取Azure App Service在静态站点上添加自定义HTTP响应标头?

时间:2019-01-10 21:55:57

标签: azure azure-web-sites

我有一个仅包含静态html页面的Azure网站。如何在响应中设置缓存控制标头?

1 个答案:

答案 0 :(得分:3)

您可以使用以下代码添加自定义缓存控制标头:

<configuration>
  <system.webServer>
    <httpProtocol>
      <customHeaders>
        <clear /> <!-- Gets rid of the other unwanted headers -->
        <add name="cache-control" value="XXXXX" />
      </customHeaders>
      <redirectHeaders>
        <clear />
      </redirectHeaders>
    </httpProtocol>    
  </system.webServer>
</configuration>  

有关更多详细信息,您可以参考此article