I want to set no cache headers for all html files in my project. I know how to do it for a specific file:
 <location path="index.html">
    <system.webServer>
      <httpProtocol>
        <customHeaders>
            <add name="Cache-Control" value="no-cache, no-store, must-revalidate" />
            <add name="Pragma" value="no-cache" />
            <add name="Expires" value="0" />
        </customHeaders>
      </httpProtocol>
    </system.webServer>
  </location>
But how can I use it like a wildcard to target all html files?
 
    