for security reason I want to store uploaded images outside of documentsroots.
here's (an example of) my .htaccess
RewriteEngine on
RewriteRule ^images/(.*) /path/outside/documentsroots/images/$1
I am trying to display my images file like this php line below without success
echo <img SRC="images/myPic.png">
Can someone give me tips on how to proceed?
Thanks