Wiza logo
Wiza logo
Get a demo
Get started for free

Find verified emails andphone numbers in seconds

The world's largest and most accurate prospecting solution.

Get started for free
Get a demo
Paid Search Thumbnail
Microsoft logo
Google logo
Slack logo
Teradata logo
UserTesting logo
Salesforce logo
logocloud divider
G2 logo
4.6
5
Rating by G2 users
Chrome logo
4.8
5
on Chrome Store
logocloud divider
ALB routing & testing guide — expand for details

wiza-marketing-site (Qwik)

This route is NOT served in production. Webflow handles wiza.co/ and most other paths via wiza-proxy (ALB rule 99).

Header and footer links are misleading here. They use the shared site chrome and point at other Qwik routes in this repo. For real wiza.co traffic, those URLs are served by Webflow (and related infra), not these pages — so almost every link is to dead code that never runs in production. In pre-prod, test almost exclusively the directory URLs in the next section (plus /api-docs/*, static asset paths, or /resolve-recaptcha if you are changing those). Do not assume nav or footer links reflect the live site.

Test these pages exclusively (directory flow)

Start here: company directory on this host (local, staging, etc.).

Use your local or staging host (e.g. https://localenv.me). Slugs and IDs must exist in the data you have wired up; the pattern is:

  1. Company browse by letter: /directory/a — listings under /directory/{letter} (and paginated paths under /directory/{letter}/{page}).
  2. One company: /d/art-of-problem-solving/69e6 — /d/{company-slug}/{company-id}.
  3. One person at that company: /d/art-of-problem-solving/69e6/matt-hin — /d/{company-slug}/{company-id}/{person-slug}.

That flow hits the real Qwik directory routes and the shared header/footer layout. Other routes in this repo are for legacy or local-only pages; following header/footer links mostly walks dead paths vs production.

Routes actually served in production:

  • /d/* — Company and person directory pages (ALB rule 97)
  • /directory/* — Company directory browse (by letter, pagination) (ALB rule 97)
  • /api-docs/* — API documentation (ALB rule 97)
  • /assets/*, /build/*, /fonts/*, /favicon* — Static assets (ALB rule 92)
  • /resolve-recaptcha — reCAPTCHA endpoint (ALB rule 92)

All other routes in this repo are dead code shadowed by Webflow. See ALB rules on wiza-jupiter-load-balancer for details.