Google 给出了以下设置 Apache 服务器以服务 GWT 应用程序的示例。
AppEngine (GAE) app.yaml 文件的等效条目是什么?
<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>