Topic: img/avatars/.htaccess

A user on the french support board reported trouble seeing the avatars;
the solution he found:
file /img/avatars/.htaccess

from

Deny from all
<FilesMatch "\.(gif|jpg|png)$">
    Allow from all
</FilesMatch>

to

Deny from all
<Files "*.gif">
Allow from all
</Files>
<Files "*.png">
Allow from all
</Files>
<Files "*.jpg">
Allow from all
</Files>

2

Re: img/avatars/.htaccess

maybe

<FilesMatch "*\.(gif|jpg|png)">

?

Re: img/avatars/.htaccess

very good