in your root dir in .htaccess place
<IfModule mod_rewrite.c>
RewriteBase /
RewriteEngine on
RewriteRule ^uploader/([a-zA-Z0-9])([^/]+)$ uploader/images/$1/$1$2 [L]
</IfModule>
this should redirect the files the way you want
2
solved Display the image in the browser without any extension & path of directory