I am trying to load an external HTML file into a div element using the following php code:\[code\]$page = file_get_contents($path);echo $page\[/code\]where $path is outside of my inetpub directory.HTML is loading just fine, but all referenced images do not load, I am getting the 404 error - file not found. All image files are located in the same directory as HTML, and all src attributes contain filenames only, without path.I can see in the Debug console that browser is trying to load these images from inetpub.How can I tell it to look into the same directory where html file is located. Is it possible at all? If not, how can I load an html file with images located outside the inetpub directory?