Trying to optimize my vb board, added this code to htaccess in attempt to cache a specific folder and type for 1 month. When I try though, I get internal server error.
What did I do wrong?
Thanks
Code:
<Directory "/public_html/forum/images/forumicons">
<FilesMatch "\.(gif|jpg|png)$">
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 month"
</IfModule>
</FilesMatch>
</Directory>
What did I do wrong?
Thanks