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
Direct Link
A direct link points at a file's bytes rather than at a page about the file. Request it and you get the file itself, with its own Content-Type header and nothing wrapped around it.
Download Link
A download link is an address that makes the browser save a file to disk instead of displaying it in a tab. The behaviour comes from a header on the response or an attribute on the anchor tag, not from anything inside the file.
Public URL
An address that serves its content to anyone who requests it, with no sign-in, token or password. Having the address is the only requirement.
URL Slug
The readable, hand-picked part of a web address that names one particular thing — the 'acme-pitch' in acme-pitch.99helpers.site. It is chosen, short and made only of lowercase letters, digits and hyphens.
Custom Domain
A custom domain is a name you own, pointed at content somebody else hosts, so visitors see files.acme.com instead of the provider's address. You keep the registration; the provider keeps the servers.
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 →