How do I force files to open in the browser instead of downloading (PDF)?

后端 未结 13 1128
别跟我提以往
别跟我提以往 2020-11-22 04:15

Is there a way to force PDF files to open in the browser when the option \"Display PDF in browser\" is unchecked?

I tried using the embed tag and an iframe, but it o

13条回答
  •  青春惊慌失措
    2020-11-22 05:03

    If you link to a .PDF it will open in the browser.
    If the box is unchecked it should link to a .zip to force the download.

    If a .zip is not an option, then use headers in PHP to force the download

    header('Content-Type: application/force-download'); 
    header('Content-Description: File Transfer'); 
    

提交回复
热议问题