File Hosting & Sharing

Shareable Link

Definition

A shareable link is a URL built for human circulation: pasted into an email, dropped in a chat, put on a slide, printed on a card. It wants to be short enough to read aloud and stable enough to outlive the message it travelled in. At the far end there is usually a viewer page showing the file name, its size, a preview where the type allows one, and a button that starts the download. That is what marks it out from a direct link, which resolves straight to the bytes with no page in between. Because there is a page, a shareable link can carry conditions — a password, an expiry, a form — and a bare file address cannot.

Why It Matters

The link is the only part of your hosting that other people ever see, so it works as an address and as a signal at the same time. Someone who receives quarterly-report.99helpers.site knows roughly what is about to open; someone who receives forty characters of random string does not, and is measurably less likely to click. Stability matters just as much as looks. A link on a printed flyer or in a year-old email has to still resolve, which means the address must survive the file behind it being replaced — get that wrong and every copy already out of your hands turns into a 404.

How It Works

The host reserves a path for your file and answers requests to it. A shareable link returns an HTML page with a 200 status, and the download button on that page points at the underlying object. Because the page is rendered before anything is released, that is where a password check, an expiry check or a lead capture form can sit. Replacing the file changes what the path resolves to while leaving the path alone, so the link keeps working and begins serving the new version to everyone who already has it. If you would rather skip the page entirely, you ask for a direct address instead — and accept that the conditions disappear along with the page that asked them.

Real-World Example

A trust publishes its annual report as a 9 MB PDF and needs one address for the newsletter, the printed programme and the website footer. On 99helpers it becomes trust-annual-report.99helpers.site: a page with the cover image, the file size and a download button. Three months on, a corrected figure means a new PDF, uploaded under the same URL slug. Every link already in circulation now serves the corrected document, including the programme that went to the printers in January and cannot be recalled.

Common Mistakes

  • Circulating a temporary preview address rather than the permanent one — previews are built to expire, and the link dies the moment it does
  • Tidying up the slug after the link has been sent — every copy already out there returns 404 from that moment on
  • Handing out a viewer page where an embed was needed — a page cannot be used as the src of an img tag, and the image simply does not appear

Related Terms

Put a file online in seconds

Drop in a document, an image, a page or a whole static website and share the link — free, with no build step and no server to set up.

Host a file free →