Hello
Example:
<img src="/images/name.jpg" alt="" />
This is what I want:
<img src="name.jpg" alt="" />
Upon request for the image, the image will not be found because it is in the "images" directory and not in the root where the HTML file is.
Is there a way htaccess or any other technique will be able to recognise the http image request and rewrite it with the the path (/images/) prepended?
For example when htaccess reads the extension (.jpg) can it say something like
Hey .jpg you're an image, let's prepend the images path and send you back to the client
Thanks in advance!