Is your server NGINX? If so you can use this code snippet:
# browser caching of static assets
location ~* \.(jpg|jpeg|png|gif|ico|css|js|pdf)$ {
expires 7d;
}
which was taken from this guide: Serve Static Assets With An Efficient Cache Policy guide
Website: pagespeedplus.com