I run apache on a mac. My document root folder is /Library/WebServer/Documents. When I create new subfolder under Documents folder I can't load images from that subfolder.
My html file under /Library/WebServer/Documents/test is:
<html>
<body>
<h1>Test</h1>
<img src="http://localhost/test/angry.gif"/>
</body>
</html>
The angry.gif file is placed under test/ folder. I also perform chmod -R 777 test/ but doesn't seem efficient.
Any suggestion?
Andrej