Sharing, Links & Measurement

Deep Link

Definition

A deep link is an address that takes someone straight to a specific piece of content instead of a home page. On the web this is ordinary behaviour: a path like /docs/2025/plan.pdf is a deep link and the site root is not. The phrase picked up a second meaning on mobile, where a link can open a native app at a particular screen rather than the browser, using either a custom scheme or a verified https address the operating system routes to the app. Fragments extend the idea inside a document, so a deep link can land on a section or on page forty of a PDF. The common thread is precision: one address, one destination, no navigation asked of the reader.

Why It Matters

Every click you remove is a reader you keep. Sending someone to a home page and telling them to find the third item under Resources loses a share of them at each step, and for a proposal or a portfolio that share is the entire point of sending it. Deep links also make analytics mean something, because a visit to a specific address tells you what was actually read, while home-page traffic tells you almost nothing. The trade-off is fragility: the more specific the address, the more ways it can break, which is the argument for building deep links on an address you control rather than on a path through somebody else's navigation.

How It Works

On the web the host maps the path to a file and returns it, so the depth of a link is simply how many segments the path has. Within a document, the fragment picks out an element id or a PDF page. On mobile, Android App Links and Apple Universal Links work by publishing a small JSON file on the site — assetlinks.json or apple-app-site-association — that names the app allowed to handle the domain; the operating system fetches that file, and matching links then open the app, falling back to the browser when the app is absent. Both files are static, so a static host can serve them without any trouble. What a static host cannot do is generate a deep link on the fly or branch on a parameter, because that needs code running somewhere.

Real-World Example

An agency's portfolio lives at studio-atlas.99helpers.site with each case study at its own path, such as the one for a rail project. A new-business email links straight to that single case study instead of the front page. The prospect sees the relevant work in one click, and the analytics show which case study each recipient opened, which is a far more useful signal than a visit to the home page.

Common Mistakes

  • Sending the home page and describing where to click — every extra step costs readers, and some of them never arrive
  • Building deep links on a path that is about to be reorganised — without redirects, a restructure kills every one of them at once
  • Assuming a mobile deep link always opens the app — if the app is not installed or the association file is missing, the address still has to work in a browser

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 →