Browser does not display images on paste

If you go to http://cartpauj.icomnow.com/ , you will see that images in HTML are not showing. Here's a screenshot: http://cl.ly/MrL6

The src for images is 100% correct and if I view the image file directly in my browser it shows up. Screenshot from Element Inspector in Chrome: http://cl.ly/Mrlt

However, when I view this image, it displays well. I would post a link to the image, but I can't, because there are no 10 points of reputation here. You can see the URL of the image in the screenshot above.

I checked .htaccess for any weird rules but nothing wrong with it. Does anyone have any idea what might be causing this?

+3


source to share


1 answer


The problem is that the queries for your images are like the following:

http://cartpauj.icomnow.com/wp-content/uploads/logoBig.png

Redirected to http://icomnow.com . This only happens when the header is set Referer

(which happens when you load the image from the page, not directly). You probably have a rewrite rule violation.



Other broken images:

  • /wp-content/uploads/2011/05/Blue_store1.jpg
  • /wp-content/themes/simplex/images/logo-simpleX.png
  • /wp-content/uploads/2011/05/istore-banner125.png
  • /wp-content/uploads/2011/05/android-logo-white-150x1501.png
  • /wp-content/uploads/logoBig.png
  • /wp-content/uploads/2010/11/plugin_store250x1251.gif
  • /wp-content/uploads/ads/icomnowad125.jpg
  • /wp-content/themes/simplex/images/arrows-ffffff.png
  • /wp-content/uploads/ads/icomnowad125.jpg
  • /wp-content/uploads/logoBig.png
  • /wp-content/uploads/logoBig.png

You can use a tool like Fiddler to find them easily.

+1


source







All Articles