I have these old site and it has the image url in all of its .htm files like this below,
<img border="0" src="images/logo.jpg" alt="xxx" width="170" height="150">
I want to know if I can add an absolute path before all the image URLs with htaccess.
For instance,
<img border="0" src="http://localhost/mysite/local/applications/bin/oldsite/images/logo.jpg" alt="xxx" width="170" height="150">
Is it possible?
Or do I have to change the image path manually file by file?
My attempt,
RewriteRule ^(.*\.(gif|jpg|png))$ local/applications/bin/oldsite/images/$1 [QSA,L]
not working of course!