在这个 gwt web中说要放置一个这样的 *.htaccess 配置文件以避免缓存主要的 javascript gwt 应用程序。
<Files *.nocache.*>
ExpiresActive on
ExpiresDefault "now"
Header merge Cache-Control "public, max-age=0, must-revalidate"
</Files>
<Files *.cache.*>
ExpiresActive on
ExpiresDefault "now plus 1 year"
</Files>
有没有办法对 Jetty 做同样的事情?(无需使用 httpd jetty 模块)