下载pdfs而不是在浏览器中显示

时间:2011-03-03 10:39:15

标签: php html

我的网页中有指向PDF的链接,这些链接位于我的服务器中。 当用户点击链接时,我不希望在浏览器bur中直接查看pdf文件

1 个答案:

答案 0 :(得分:1)

只需设置正确的标题信息即可。 PHP文件看起来应该是这样的。

<? 
  header('Content-disposition: attachment; filename=huge_document.pdf');
  header('Content-type: application/pdf');
  readfile('huge_document.pdf');
?>

如此处所示

http://webdesign.about.com/od/php/ht/force_download.htm

此致