Found the solution, so I'm posting here fyi in case someone else makes the same mistake <grin> Here's an example...
Document root = C:\EasyPHP\www
Site folder = C:\EasyPHP\www\siteA
Images folder = C:\EasyPHP\www\siteA\images
Site loads fine at [
127.0.0.1]
code = src='/images/pic.png' is looking for the image in [
127.0.0.1] = obviously not found because siteA is not in the path
change the code to src='images/pic.png' -or- src='./images/pic.png'... the path is now [
127.0.0.1] = BTW this is a Wordpress site, but the path now includes that WP page name
change the code to src='../images/pic.png' and it works... I needed to go one level higher to get past the WP page name. I had also thought this would not work when moved to the webhost since an add'l level upward in the path didn't seem correct...but it does work fine.
thx...Rob