美文网首页
服务器设置Cache-Control的方法

服务器设置Cache-Control的方法

作者: 心淡然如水 | 来源:发表于2022-04-07 18:18 被阅读0次

Apache

.htaccess文件

<filesMatch "\.(ico|gif|jpg|png|jpeg)$"> 
ExpiresActive On 
ExpiresDefault "access plus 11 month" 
Header append Cache-Control "public" 
</filesMatch>

Nginx

.conf文件

location ~* ^.+\.(jpg|jpeg|gif|png|ico)$ 
{ 
expires max; 
}

IIS
config.xml文件

<configuration> 
    <system.webServer> 
        <staticContent> 
            <clientCache cacheControlMode="UseExpires" httpExpires="Tue, 19 Jan 2038 03:14:07 GMT" /> 
        </staticContent> 
    </system.webServer> 
</configuration>

相关文章

网友评论

      本文标题:服务器设置Cache-Control的方法

      本文链接:https://www.haomeiwen.com/subject/hvsssrtx.html