Home >Backend Development >PHP Tutorial >How Can I Force PDF Downloads in a Browser, Regardless of Adobe Acrobat Installation?
PDF Link Download Customization
When providing PDF links for download on a web page, you might encounter an issue where the behavior varies depending on whether Adobe Acrobat is installed. To ensure that the file always opens in a download prompt, follow the HTML 5 solution below:
<a href="./directory/yourfile.pdf" download="newfilename">Download the pdf</a>
In this code, "newfilename" represents the suggested filename for the downloaded file. If left empty, it will default to the original server-side filename.
<a href="./directory/yourfile.pdf" download>Download the pdf</a>
Compatibility Considerations:
This solution has been tested successfully on Firefox 21 and Iron. However, it may not be compatible with outdated or HTML5-incompatible browsers. Notably, it does not force downloads in Internet Explorer.
Compatibility Check:
To verify compatibility, refer to the following link: http://caniuse.com/#feat=download
The above is the detailed content of How Can I Force PDF Downloads in a Browser, Regardless of Adobe Acrobat Installation?. For more information, please follow other related articles on the PHP Chinese website!