The site 63.208.1.26/FreightRateCentral
is not rendering images. Chrome reports HTTP 404 for each of them. This is a fresh install of Windows 2008 R2 and IIS 7. At first, I thought that it was a .NET framework issues, but I ensured that the application pool is running 4.x. Then, I checked IIS Request Filtering, but .jpg and .png extensions are not being blocked. The deployed site files are in a subfolder under wwwroot. What other issues may be causing the site from rendering the images correctly? Thanks for your help and guidance!
This is, as Chrome correctly reports, a path issue.
The HTML markup says, for example:
The correct path is
http://63.208.1.26/FreightRateCentral/Content/NewImages/
. In other words, either take the first slash off the img src tag (<img src="Content/NewImages/img-master-card.jpg">
) or add the FreightRateCentral directory (<img src="/FreightRateCentral/Content/NewImages/img-master-card.jpg"
).