PHP Header - Content-type: image/jpeg - Not working for Internet Explorer

后端 未结 4 1211
别跟我提以往
别跟我提以往 2021-01-12 05:41

We all hate Internet Explorer when building HTML templates, or modifying websites. Well I recently built a PHP image script to hide the location of the URL. It works fine fo

4条回答
  •  暖寄归人
    2021-01-12 06:16

    I think I know what the problem is.

    Internet Explorer expects you to use image/jpeg and not image/jpg.

    Try this:

    Header("Content-Type: image/jpeg"); 
    

    All browsers accept this format, and you won't have to worry anymore.

提交回复
热议问题