I am building a joomla website on a live server and had to download the whole thing locally to work while without internet connection.
I am facing the following problem :
<img src="/images/photos/thumbnails/Topothesia.jpg">
does appear normally on the live server, while in the wamp environment fails to load
i can fix it in the wamp server by changing it to :
<img src="http:/localhost/sitename/images/photos/thumbnails/Topothesia.jpg">
Both pages have (in case its relevant)
<base href="http://***live site or localhost***/en/foo/bar" />
I understand it has something to do with how each (apache?) server handles relative or absolute links, but I need a way to make the local wamp server act like the live one in order to work.
Any ideas on how to handle it?
Thanks in advance.