Images not loading on local webserver

When viewing pages stored on my webserver (either from /localhost/ or /my ip address/), the pages and scripts load/run fine, but no images are displayed. The images are replaced with image placeholders. Others viewing pages from my Apache server are seeing the images fine.

Any ideas?

Thanks!

Also, trying to open the image file directly (ie: http://ipaddress/images/test.jpg) results in a 403 Forbidden error.

If that helps :slight_smile:

Another update… :slight_smile:

I fixed my primary .htaccess file to now include:

<FilesMatch “.(gif|png|jpe?g)$”>
Order Allow,Deny
Allow from all
</FilesMatch>

so I can now view the files directly via URL. However, inside an HTML document, they still appear as image placeholders (not as broken image placeholders).