IE : Unable to download * from *. Unable to open this Internet site. The requested site is either unavailable or cannot be found

后端 未结 13 839
别跟我提以往
别跟我提以往 2020-11-29 22:03

I have an issue with my website and IE. I have a file Document.ashx that becomes a document from my database depending on the parameter passed in the query

13条回答
  •  悲&欢浪女
    2020-11-29 22:57

    This issue occurs in IE8, and possibly earlier versions - but is resolved in IE9+. It is related downloading documents over SSL.

    To resolve the issue in my application, I had to add the following two headers to the download (written in PHP):

    header("Cache-Control: private");
    header("Pragma: cache");
    

提交回复
热议问题