A, CNAME, ALIAS and URL records are all possible solutions to point a host name to your site. However, they have some small differences that affect how the client will reach your site.
Before going further into the details, it’s important to know that A and CNAME records are standard DNS records, whilst ALIAS and URL records are custom DNS records provided by DNSimple.
###Understanding the differences
- The
Arecord maps a name to one or more IP addresses, when the IP are known and stable. - The
CNAMErecord maps a name to another name. It should only be used when there are no other records on that name. - The
ALIASrecord maps a name to another name, but in turns it can coexist with other records on that name. - The
URLrecord redirects the name to the target name using the HTTP 301 status code. Some important rules to keep in mind:
###The general rule is: Understanding the difference between the A name and the CNAME records will help you to decide which one to use.
- Use an
Arecord if you manage what IP addresses are assigned to a particular machine or if the IP are fixed (this is the most common case) - Use a
CNAMErecord if you want to alias a name to another name, and you don’t need (such as other records (such as MX records for emails) for the same name - Use an
ALIASrecord if you are trying to alias the root domain (apex zone) or if you need other records for the same name - Use the
URLrecord if you want the name to redirect (change address) instead of resolving to a destination.
You should never use a CNAME record for your root domain name (i.e. example.com).
source : dnsimple