thel.online.ph
Posts: 102
Joined: 13 Sep 11
Trust:
23 Sep 11 1:42 am
Hi,
As I research in internet to find some suitable solution, I found these finest tricks on how to force a download a pdf. – by adding the following code into your httaccess file.
FilesMatch "\.(pdf|PDF)"
ForceType application/pdf
Header set Content-Disposition attachment
</FilesMatch>
The code will match perfectly for both lower case and upper case PDF extension by using regular expression and OR operator in the following line.
<FilesMatch "\.(pdf|PDF)">
And thats it… You have now the control in Forcing PDF to download.
Hope that helps