我的网页中有指向PDF的链接,这些链接位于我的服务器中。 当用户点击链接时,我不希望在浏览器bur中直接查看pdf文件
答案 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
此致