我有一项增加网站性能的任务,当我查看服务器响应时,我得到了364kb纯粹恐惧的响应数据。
首先,我要兑现申请的静态数据。 我有Styles文件夹和/ images,site.css里面。 为此,我在Web.config中有代码。
<configuration>
<location path="~/Styles">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseExpires"
httpExpires="Tue, 19 Jan 2038 03:14:07 GMT" />
</staticContent>
</system.webServer>
</location>
</configuration>
但是当我用萤火虫检查回复时,我得到了相同的364kb邪恶,并且在2038年没有失效日期。
我做错了什么?
我没有使用IIS或其他任何东西。 只有手动web.config,只有硬核。
答案 0 :(得分:2)
<system.webServer>
元素包含IIS配置
ASP.NET开发Web服务器不读它。
如果您希望这种情况发生,则需要使用IIS或IIS Express。