apache - How to Change Response Headers - Pragma & Cache-Control -


i'm using font awesome in web application none of icons displaying in internet explorer 11. per troubleshooting guide learned behavior can tied no-store cache-control header, or no-cache pragma header.

how can change these header values?

ideally, there option in ie developer tools can adjust this, not seem possible. have been playing around on web server - apache 2.4 (debian) - , attempted following in sites-enabled configuration:

    <filesmatch "\.(eot|woff|ttf|svg|otf)$">             <ifmodule mod_headers.c>                     header unset cache-control                     header unset pragma             </ifmodule>     </filesmatch> 

i reloaded apache , no change, these headers still set, icons still not displayed in internet explorer.

i don't have experience apache, use here! in advance.


Comments

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -