You cannot access files outside the .htaccess directory, even using the absolute path. The solution may be to make a symbolic link in the current folder that points to your image directory, and then specify your .htaccess rule for this file.
Your rule should look like this:
RewriteRule ^images/(.*)$ /assets/images/$1 [L]
source share