문제

I am having some trouble open a image (jpg) on the browser despite correct location. The rest of the image located in the folder are able to open.

I need some advise or diction how to approach this issue.

Link 1 --> Show my FTP http://postimg.org/image/g3lofgv8r/

Link 2 --> Show the dictionray http://postimg.org/image/7nw24mw81/

도움이 되었습니까?

해결책

Did you try to url encode the value in the src-attribute of your image tag? (I find this link useful for a quick check: http://www.w3schools.com/tags/ref_urlencode.asp)

Like when your image filename is

<img src="spaces and + sign in url.jpg" />

you would encode it with

<img src="spaces+and+%2B+sign+in+url.jpg" />

다른 팁

Issue looks to me is the Space between name of image...either remove space or use underscore(_)...enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top