Apache
.htaccess
代码语言:javascript
复制<FilesMatch ".(flv|gif|jpg|jpeg|png|ico|txt|swf|pdf|swf|js)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>
nginx
代码语言:javascript
复制 location ~ .(jpg|jpeg|png|gif)$ {
expires 365d;
}
当然你也可以配置nginx支持.htaccess