Technology ExplainedTechnology ExplainedWeb InfrastructureDNSHTTPSHostingPerformanceReliabilityTechnology Partnership

What Happens When Someone Opens Your Website? The Request Path Explained

TekMout Team
August 27, 2026
11 min read

The short answer: opening a website is not one connection to one box. The browser resolves the domain through DNS, establishes a secure HTTPS connection, may receive a cached response from a delivery layer, and otherwise reaches the hosting or application system that produces the page. A failure or misconfiguration at any one of those layers can make the whole website appear broken.

This guide is for business owners, marketing leaders, and operations teams who depend on a website but do not have a clear picture of the accounts and systems behind it. You do not need to administer the infrastructure yourself. You do need to know what exists, who controls it, how it is monitored, and what happens when it fails.

The protocol facts below come from ICANN and IETF standards. The six-layer map, ownership questions, and recovery checklist are TekMout recommendations for making a business website supportable; they are not requirements from those organizations.

The six layers in one website request

A useful mental model is a sequence of six questions:

  1. Domain: does the business still control the registered name?
  2. DNS: where does that name currently direct visitors?
  3. TLS certificate: can the browser verify the service identity and create a protected connection?
  4. Delivery layer: can a cache or edge service answer safely, or must it contact the origin?
  5. Hosting or origin: is the system that serves the website available and correctly configured?
  6. Application: can the site generate the right page and complete the customer's action?

These layers may be sold by one provider, but they remain different responsibilities. A website can have healthy hosting and still fail because the domain expired, DNS points elsewhere, the certificate does not match the hostname, or the application cannot reach a required service.

Layer 1: the domain is the business-controlled name

The domain is the name a person types or follows, such as example.com. It is not the website files and it is not the server. ICANN defines the registrant as the person or entity that registers a domain; after registration, the registrant manages settings through the registrar. ICANN also says registrants should have access to information about managing, transferring, renewing, and restoring the registration.

TekMout recommendation: the business should be the registrant and should control the registrar account. Use a company-controlled email address, current recovery information, multi-factor authentication when available, and renewal alerts that reach more than one responsible person. A web partner can administer the domain, but an employee's personal account or an unreachable former vendor should not be the only path to it.

Record the registrar, registrant organization, renewal date, billing owner, recovery method, account administrators, and any transfer lock. This is an ownership check, not a request to publish sensitive credentials in a shared document.

Layer 2: DNS turns the name into routing instructions

ICANN describes DNS as the system that connects a domain name with an Internet address. In practice, the DNS zone can contain several kinds of records: website destinations, email routing, service-verification values, and delegated nameservers. Changing a website record without understanding the rest of the zone can therefore disrupt something that is not visibly part of the website.

DNS answers are cached. RFC 1034 defines a record's time to live, or TTL, as the limit on how long it can remain in a resolver's cache before being discarded. That is why a DNS change may not appear everywhere at the same instant. “Propagation” is not a single global switch; different resolvers may hold an earlier answer until its TTL ends.

TekMout recommendation: before a planned hosting change, export or document the complete zone, confirm which records will change, lower relevant TTLs early enough to matter, and prepare a reversal value. Do not delete unfamiliar records merely because they do not look related to the website.

Layer 3: TLS establishes the protected HTTPS connection

For an HTTPS URL, the browser and server establish a TLS-protected connection before exchanging the HTTP request and response. RFC 8446 describes TLS as providing authentication, confidentiality, and integrity for the channel. RFC 9110 explains that HTTPS depends on the server being authenticated for the identified authority and the communication receiving confidentiality and integrity protection acceptable to both sides.

The certificate is evidence used in that identity check; it is not the encryption itself and it does not prove that the business behind a website is trustworthy. RFC 9525 explains that the client compares the identity it expects with identifiers presented in the server certificate. The certificate must cover the hostnames people actually use, such as both the chosen primary name and any supported www name.

TekMout recommendation: automate certificate issuance and renewal through the hosting or certificate system, monitor the public hostname independently, and test every supported hostname after DNS or platform changes. Let's Encrypt warns that manual renewal workflows increase the risk of missed renewals; automation still needs monitoring because an account, DNS, or validation change can break it.

Layer 4: a CDN or shared cache may answer before hosting does

A content delivery network can place a shared cache between the visitor and the origin. RFC 9111 defines an HTTP cache as a store of response messages that can reuse a permitted response for a later equivalent request, reducing response time and network use. A fresh cached page or asset may therefore be served without asking the origin for the full content again.

Caching is controlled behavior, not a universal copy of everything. The request method, target URL, response headers, freshness rules, and other request details determine whether a stored response can be reused. Personalized pages, authenticated responses, form submissions, and rapidly changing content need deliberate rules. An aggressive cache can show old content or expose the wrong response; no useful caching can create unnecessary load and latency.

TekMout recommendation: document which routes are public and cacheable, how a release purges or versions changed assets, and how the team can bypass the delivery layer during diagnosis. Test important updates from a clean browser session after a release instead of assuming that a successful deployment means every visitor sees the new version.

Layers 5 and 6: hosting runs the origin; the application does the work

The origin is the authoritative service behind the URL. Hosting supplies the environment in which static files, server-side code, or both are delivered. The application then chooses the page, loads content, calls databases or APIs, and handles actions such as form submissions.

This distinction matters during an incident. A healthy hosting dashboard does not prove that the contact form reaches the right person. A fast home page does not prove that the estimator, scheduling tool, or CRM handoff works. Conversely, an application error may affect one route while DNS, TLS, and most of the site remain healthy.

If you are comparing architectures, read why Next.js can fit a growing business website. If the site is already live, pair this request-path map with the post-launch technology ownership guide. TekMout's web development service is the relevant next step when the site needs structural changes rather than another isolated patch.

A concrete troubleshooting example

Illustrative scenario—not a client case study: a company launches a new site at www.example.com. The root domain loads, but the www address shows a certificate warning and some visitors still see the old site.

The useful response is to test the path in order:

  • Confirm the registrar account and intended nameservers.
  • Compare the DNS records and TTLs for the root and www hostnames.
  • Check whether the certificate presented for www includes that hostname.
  • Inspect whether the delivery layer has an old cached redirect or page.
  • Verify that the origin recognizes both hostnames and redirects to one canonical version.
  • Run the important application actions on the final public URL.

This sequence prevents the team from repeatedly redeploying application code when the defect is actually in naming, identity, or caching.

Common ownership and reliability mistakes

  • One person controls everything: a single inbox, phone, or account recovery path can become a business continuity problem.
  • The vendor owns the domain: changing partners becomes an access negotiation instead of an orderly handoff.
  • DNS is edited without a zone inventory: a website migration accidentally affects email or verification records.
  • Certificate renewal is assumed: automation exists, but nobody receives an alert when validation fails.
  • The CDN and origin are treated as one system: stale content and origin failures become harder to isolate.
  • Monitoring checks only the home page: a form, booking path, or integration can fail while the site still looks available.

What your team can do and when expert help is useful

Your team can inventory the registrar, nameservers, DNS provider, certificate manager, delivery layer, hosting platform, code repository, database, external services, billing owners, and administrators. It can also test the public site from outside the office network, submit each important form, confirm the destination, and record a primary and backup owner for every layer.

Bring in expert help when ownership is unclear, a migration crosses several providers, DNS also supports important email or verification records, the site handles sensitive data, caching varies by user, the application has multiple integrations, or failures cannot be isolated reliably. A useful technology partner should leave the business with a documented map, monitored failure points, and a recovery process—not another set of undocumented credentials.

Your one-page request-path checklist

  • Record the domain registrant, registrar, renewal owner, and recovery contacts.
  • Export the DNS zone and identify the purpose and owner of each important record.
  • List every public hostname and confirm that HTTPS works for each one.
  • Document the cache or CDN rules, purge method, and origin address.
  • Record the hosting project, repository, deployment owner, and rollback path.
  • Test the website's important actions through their final destination.
  • Assign primary and backup owners and an external availability check.

Sources used in this article

Keep exploring

Continue with a practical guide that connects this topic to planning, visibility, technology choices, or implementation.

Unsure who controls your website stack?

Turn the request path into an ownership and recovery map.

TekMout can trace the domain, DNS, certificate, delivery, hosting, and application layers behind your site, document who owns each one, and prioritize the reliability gaps worth fixing.

Start a project

Email hello@tekmout.com or share a few details below.