I\'m using a webfont for my website (made with Spring for an Apache Tomcat 6 server). I\'m including my font in my css file with font-face as:
@font-face{
font
The practical answer is,using a proxy, to hide to the browser any cache-invalidating headers. Like "cache-control" and pragma: "no-cache" headers returned to the browser.
I used nginx like this, adding the folowing commands the https proxied location:
proxy_hide_header Cache-Control;
proxy_hide_header Pragma;
See here for details with nginx.
Using apache httpd, you'll find the syntax here