Results 1 to 2 of 2
hi,
I tried to force download of certain file types - pdf,doc,jpg - instead of opening them in applications. I used
AddType application/octet-stream .pdf
and
AddType application/force-download .pdf
but it ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 06-10-2009 #1Just Joined!
- Join Date
- Jun 2009
- Posts
- 1
.htaccess and forced download of certain file types
hi,
I tried to force download of certain file types - pdf,doc,jpg - instead of opening them in applications. I used
AddType application/octet-stream .pdf
and
AddType application/force-download .pdf
but it doesnt works. Has anybody an idea how to solve this problem? thx, brdik
- 06-10-2009 #2
add this in .htaccess
<Files *.pdf>
ForceType application/octet-stream
Header set Content-Disposition attachment
</ Files>


Reply With Quote
