נראה לי שאפשר לעשות את זה עם סקריפט PHP קטן שמשמש כHEADER לקובץ.
http://il2.php.net/header
תנסה עם:
PHP קוד:
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>
זה קצת בעייתי עם קבצים גדולים, כי הPHP צריך לקרוא אותם לזיכרון..
פשוט תכתוב "לשמירה, לחצו כפתור ימיני ושמירה בשם" כמו בכל האתרים.