BMI 1.1.1.4 URL prefix
From time to time my websites does not show images. When you look at their URL it looks like this:
http://1.1.1.4/bmi/www.domain.com/path/to/image.png
The www.domain.com/path/to/image.png is a valid path.
What is the problem? I use Apache, WSGI an开发者_开发技巧d Django.
It looks like the page source is being mangled by Vodafone. This answer may be related:
Stop mobile network proxy from injecting JavaScript
try to send the header
header("Cache-Control: no-transform");
(works with german 1&1 provider)
How can we know what is the problem ?
Your path may be valid but are you sure the images are located in the proper folder ?
By the way, your website doesn't show the whole website or only images ?
Try to locate your images in another folder (for example the same as your webpages) and then give it a try.
Hope this helps.
精彩评论