我有以下链接:
<a href="pdf/rental-application.pdf"><img src="images/button-download-rental-application.jpg" width="348" height="50" alt="Download Rental Application"></a>
但是,有时会下载PDF,有时会在浏览器窗口中打开它。
我需要它始终下载。
我在使用.html页面的Linux服务器上。
感谢。
答案 0 :(得分:1)
如果您使用的是apache,请在配置文件(或.htaccess)中尝试此操作
<FilesMatch "\.pdf$">
Header set Content-Disposition attachment
</FilesMatch>
下载属性可以使用,但它是HTML5特定的,我相信目前仅适用于firefox和chrome。如果你确实使用了download属性,你应该这样做:
答案 1 :(得分:0)
这应该有效:
<a href="pdf/rental-application.pdf" download><img src="images/button-download-rental-application.jpg" width="348" height="50" alt="Download Rental Application"></a>
只需在代码中添加下载。