Not sure if this would help out as a budy of mine added some htaccess for me for my case.
I had a script that I wrote via a tut that wrote some random text to an image. I too needed to technically call "
http://mydomain.com/01/whateverimage.php" to display the image. He had me place the following text in a .htaccess in that /01/ directory where the base image and the script was:
Code:
RewriteEngine On
RewriteRule ^(.+)\.jpg$ /01/$1.php [L]
With that in there, it allowed me to use the more "universally accepted" "http://mydomain.com/01/whateverimage.jpg" and it would in turn return the php file. I had a couple of directories ( /02/, /03/, etc.) that had different base images and I just had to change that small piece in the htaccess code to corispond with whatever directory it was in.
Not sure if any of this could improve usability or if it's even an issue but it allowed me to just use a jpg extention in the IMG tags to call the php script.