我在 StackOverflow 上阅读了一些答案,最好使用 iisnode 的静态文件配置,而不是让 node.js 处理它。
没关系,但我只是找不到一种方法让它与传统的浏览缓存配置一起使用:
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>
当我使用 node'js 正常浏览缓存时,它是这样配置(和工作)的:
app.use(express.static(path.join(__dirname, 'public'), {maxAge: 86400000}));
我的问题是:
- 使用iisnode静态文件服务系统真的更好吗?
- 有没有办法
<clientCache ...
在 IISnode 中工作?
谢谢