My WordPress site htaccess file currently has these entries to set cache expiry for woff and woff2 font files:
<IfModule mod_expires.c>
# Content type
AddType application/font-woff .woff
AddType application/font-woff2 .woff2
ExpiresActive on
# Web fonts
ExpiresByType application/font-woff "access plus 1 year"
ExpiresByType application/font-woff2 "access plus 1 year"
</IfModule>
But I’m still getting suggestions to set cache TTL for these files in speed testing tools. Here’s one example with a cache efficiency problem: https://gtmetrix.com/reports/bydik.com/ad8hZTzh/
Is there anything wrong with my htaccess file? How can I solve this?