PDF Downloads Instead of Opening in Browser? Fixes for Both Sides
You click a link expecting a document to appear in your browser, and instead a file lands in your downloads folder. Or the opposite: you want a clean download and the browser insists on displaying the file. This is not a bug in the PDF and not a fault in your reader. Two independent parties negotiate this behaviour on every click: the web server, which sends an instruction with the file, and the browser, which holds a user preference that can override it. Knowing which one decided helps you fix the right thing.
Diagnose by testing across contexts. First, open the same link in a different browser. If it displays inline there and downloads in yours, the difference is your browser setting, not the site. Second, try a different PDF link on a completely different website. If every PDF downloads everywhere, your browser is configured to always download, and one settings change fixes all of them. Third, if only one specific site forces downloads while others display fine, that site is sending an explicit instruction and you cannot change it from your side.
For the user side fix, browsers all expose the same option in slightly different places. Look in settings for a section about site permissions, downloads, or file types, and find an entry for PDF documents. It offers a choice between opening PDFs in the browser and downloading them, and toggling it takes effect immediately on the next link. Some browsers also have a general option to always ask where to save each file, which produces the same downloading symptom for every file type; if images and documents also prompt you, that is the setting responsible rather than anything PDF specific.
For the site owner side, the deciding factor is a response header called content disposition. Sending it as inline tells browsers to display the file in the tab, while sending it as attachment tells them to download it, optionally with a suggested filename. Also confirm the content type header is set to the PDF media type; when a server sends a generic binary type instead, browsers cannot recognise the file and download it by default. That misconfiguration is the single most common reason a PDF that should preview simply drops into the downloads folder.
Some outcomes are outside anyone's control, and it is worth knowing where the line sits. Many sites deliberately force downloads for large files or licensed material, and that choice is theirs to make. Corporate device policies frequently disable the built in browser PDF viewer entirely for security reasons, and no user setting will override an administrator policy. On mobile, the operating system often routes PDFs to a default app rather than keeping them in the browser at all. In each of those cases the practical answer is simply to open the downloaded file, which loses nothing but a click.