How to point your domain at a website
To make example.com and www.example.com load your site:
- Get the IPv4 address of your web server or host (and IPv6 if it has one).
- In DNS, add an A record: host
@, value = the server's IPv4 address. - Add www: either an A record for
wwwto the same IP, or a CNAME forwwwpointing toexample.com. - If the host provides IPv6, add an AAAA record for
@(andwww) with the IPv6 address. - Save and wait for the TTL to allow propagation.
Gotchas:
- Don't put a CNAME on the root (
@) — CNAME can't coexist with the other records a root needs (like MX). Use an A record for the root. - If the site still doesn't load, confirm the A record IP is correct and that the server actually serves your domain.

0 comments
Sign in with your TDesk account to comment.