is there any difference between determining the path for <img src="">
and <a href="">
?
i am using the same type of referencing to root for both of them and they refer to different places, in this way :
<img src="/folder1/folder2/1.jpg" >
refers to parent folder of current folder and searches folder1 there !
but :
<a href="/folder1/folder2" >
refers to root and searches folder1 there !
I need the second address !
something