User Avatars Not Working – Where to put htaccess rule?

Hi guys, i cant make the Avatar plugin work properly, in the install manual it says add the line:

RewriteRule ^(.*/)?avatar/(.*) wp-content/avatar.php?file=$2 [L]

“under the line that handles uploaded files”.

However, wherever i put that line into my htaccess file, the avatars wont show up. Please help, heres my htaccess, can you please tell me where to put that line?

Tnx.!


php_flag display_errors 1

RewriteEngine On

RewriteBase /

#uploaded files

RewriteRule ^(.*/)?files/$ index.php [L]

RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

# add a trailing slash to /wp-admin

RewriteCond %{REQUEST_URI} ^.*/wp-admin$

RewriteRule ^(.+)$ /$1/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]

RewriteCond %{REQUEST_FILENAME} -d

RewriteRule . – [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]

RewriteRule . index.php [L]

<IfModule mod_security.c>

<Files async-upload.php>

SecFilterEngine Off

SecFilterScanPOST Off

</Files>

</IfModule>