This is a research guide based on cited documentation. It is not a report of firsthand testing. Our editorial method

Know what this test can and cannot prove

The curl project documents --resolve as a per-hostname and port entry in curl's name-resolution cache. For HTTPS, the URL hostname still drives SNI and certificate verification. That makes it useful when a new host is ready for your real domain but public DNS still points at the old host.

This tests a route from your machine to the specified destination. It does not prove public DNS propagation, browser rendering, background jobs, mail delivery, or behavior through a CDN you bypass. Some managed hosts require a documented preview hostname or authenticated origin access instead of direct IP access. Ask the host for its supported preflight method if the IP is shared, private, or protected.

Prepare a read-only page and a destination marker

Use a host you administer and an IP confirmed by that host. Have the new deployment expose an innocuous version marker in a public page or response header so you can distinguish it from the old deployment. Choose a read-only URL; avoid logout, unsubscribe, or action links whose GET request may change application state.

The examples below use example.com and 192.0.2.10 as placeholders, not a working destination. Replace both with your authorized hostname and new IP. Run from a local terminal where you understand proxy settings. An HTTP proxy can change the connection path, so inspect the observed remote IP and do not assume the override tested the origin if a proxy handled the request.

Fetch the page while keeping certificate checks enabled

Command template: curl --silent --show-error --connect-timeout 10 --max-time 30 --resolve example.com:443:192.0.2.10 --dump-header preflight-headers.txt --output preflight-body.html --write-out 'status=%{http_code} remote=%{remote_ip} effective=%{url_effective}' https://example.com/

Run in a new evidence directory: the two output filenames are overwritten if they already exist. Inspect the terminal result, headers, and body. Confirm the expected remote IP, expected status, and destination marker or known page text. curl can exit successfully even for an HTTP error response, so read the status explicitly. Do not add --insecure to make a certificate failure disappear; a production certificate failure is a failed check.

Treat redirects as additional destinations

The first command deliberately does not follow redirects. If it returns a redirect, inspect the Location header and determine whether the target should also be on the new host. An apex-to-www redirect needs an override for www as well; overriding example.com:443 does not override every related hostname.

After checking the target, an HTTPS-only template is: curl --silent --show-error --location --max-redirs 5 --proto-redir '=https' --connect-timeout 10 --max-time 30 --resolve example.com:443:192.0.2.10 --resolve www.example.com:443:192.0.2.10 --output preflight-final.html --write-out 'status=%{http_code} remote=%{remote_ip} effective=%{url_effective}' https://example.com/

Use each hostname's actual destination IP; they need not be identical. An HTTP-to-HTTPS test requires a separate port-80 mapping. Record every intended hostname and port in the worksheet. Unexpected destinations, redirect loops, and HTTPS-to-HTTP downgrades require investigation before approval.

Build an acceptance matrix beyond the home page

CheckProposed passing evidenceLimit
Home and important inner pagesExpected status and new deployment markerDoes not execute browser JavaScript
Static assets and downloadsExpected file type and readable contentDoes not prove every asset is present
Missing URLIntentional 404 behaviorA 200 error page is a soft failure
Login and sessionBrowser test in supported staging routecurl page fetch is insufficient
Forms or checkoutApproved test transaction and receiptAvoid real charges and external messages
Database and uploadsReconciled counts and sampled records/filesHome page success says nothing about completeness
Jobs and integrationsControlled run with observed resultEnabled configuration is not execution proof

Define rollback around data, not just DNS

Hypothetical cutover rule: proceed only after the critical matrix rows pass, the final data sync is reconciled, and one owner has authority to stop the change. Keep the old host available for a defined rollback window. Record old DNS values, change time, and the point at which new writes begin.

If the new host accepts orders or uploads after cutover, restoring DNS alone can split or lose data. Decide in advance whether you will freeze writes, synchronize new records back, or use another application-specific recovery plan. Recheck the public domain after DNS changes without --resolve; a passing preflight only established the private test path. The worksheet separates preflight, public verification, and rollback readiness so none can be mistaken for the others.

Take it with you

Download the host preflight acceptance worksheet

Download worksheet

Compare your options

Liquid Web portal dialog for adding an existing asset to a project
Liquid Web Add Asset to Project dialog. Official documentation screenshot. · Image source
HostingChecked 2026-09-13

Liquid Web

A hosting candidate to investigate when you can specify the workload and support responsibilities you need covered.

Configuration-dependent; obtain the full upfront and renewal quote

Management scope and extras vary. No universal compatible plan price or tested performance result is claimed.

Ordinary provider link. No affiliate partnership claimed. Link disclosure

Managed WordPressChecked 2026-09-13

Kinsta

A candidate for WordPress course and membership sites with a documented workload and a need to discuss PHP capacity.

Plan-dependent; confirm the full invoice, renewal, and required capacity

No plan is verified here for a specific learner count. Confirm capacity, plugin compatibility, and extra charges.

Ordinary provider link. No affiliate partnership claimed. Link disclosure

Managed WordPressChecked 2026-09-13

WP Engine

A managed WordPress candidate to evaluate against your course plugins, member access rules, and migration plan.

Plan-dependent; confirm billing term, renewal, and extras

Confirm the proposed plan's compatibility, support scope, and destination cache behavior. No measured speed advantage claimed.

Ordinary provider link. No affiliate partnership claimed. Link disclosure

Sources & verification

Product details and prices can change. Check the linked provider before buying.

  1. curl project: hostname resolution overrides and HTTPS Accessed 2026-09-13
  2. curl command manual: output, redirects, timeouts, and status Accessed 2026-09-13

Sources link directly to providers. Product buttons may use separately labeled affiliate links. Read our disclosure.