服务器设置Cache-Control的方法

Apache

.htaccess文件

 
ExpiresActive On 
ExpiresDefault "access plus 11 month" 
Header append Cache-Control "public" 

Nginx

.conf文件

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

IIS
config.xml文件

 
     
         
             
         
     

你可能感兴趣的:(服务器设置Cache-Control的方法)