I don't know if what I want is possible. I made some attempts reading various blogs, but I have not found the solution.
I have Apache locally, it works fine including mod_rewrite. When I do a local backup of a site, sometimes happens that the href attributes of anchors (src attributes of images, etc.) are not written in a relative way, something like:
<a href="http://www.mysite.com/content/image.jpg">
<img src="http://www.mysite.com/content/image-fullsize.jpg">
</a>
In local playback of my site I can not see that images if they are not accessible in the original locations. Obviously I can change the HTML paths but my question is:
Is it possible simply through a .htaccess file directive?
Thanks in advance.
.htaccess. Rewrite rules are not appropriate here because you need to modify the request before it is made. You need to change the paths in the HTML. You can do this either in the actual files or on-the-fly using something like Apache filters. – nandhp Nov 28 '12 at 18:50