Root Directory?
I'm editing a file in a folder in my root directory.. here's a quick tree: root - images - m - - index.php If I want to grab the images folder from index.php, how would I go about
Solution 1:
you should use /images instead of ../images if you know the image directory is in the root. this will resolve to a directory named images in the root from any path.
eg if you are on page /pages/html/MyPage.html the path /images will still resolve to the images directory in root whereas ../images would resolve to /pages/images.
Post a Comment for "Root Directory?"