Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ When you add a domain to Cloudflare, you may also need to create or review the D

Usually, the zone apex record makes your domain accessible by visitors. In this case, the necessary record type ([A, AAAA, or CNAME](/dns/manage-dns-records/reference/dns-record-types/#ip-address-resolution)) and its content will depend on the provider that [hosts](/fundamentals/setup/manage-domains/#host-your-domain) your website or application. If you are using Cloudflare Pages, refer to [Custom domains](/pages/configuration/custom-domains/). If you are using other providers, look for their guidance on how to connect domains managed on external DNS services.

### ANAME or ALIAS

<Render file="aname-alias-callout" />

## Zone apex record

To create a zone apex record, use `@` for the record **Name**, as in the following example.
Expand Down
8 changes: 7 additions & 1 deletion src/content/docs/dns/troubleshooting/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar:
order: 1
---

import { Render } from "~/components";
import { Render, GlossaryTooltip } from "~/components";

## Is Cloudflare a free DNS (domain nameserver) provider?

Expand Down Expand Up @@ -66,6 +66,12 @@ Only `A`, `AAAA`, and `CNAME` records can be proxied. Cloudflare will not proxy

---

## How do I add ANAME records on Cloudflare?

<Render file="aname-alias-callout" />

---

## Can I CNAME a domain not on Cloudflare to a domain that is on Cloudflare?

No. If you would like to do a redirect for a site not on Cloudflare, then set up a traditional `301` or `302` redirect on your origin web server.
Expand Down
8 changes: 8 additions & 0 deletions src/content/partials/dns/aname-alias-callout.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
{}

---

ANAME or ALIAS are DNS records used by specific DNS providers. If your previous provider was using ANAME or ALIAS, you can recreate these records on Cloudflare as CNAME records. Cloudflare's [CNAME flattening](/dns/cname-flattening/)[^1] allows you to create CNAME records at your [zone apex](/dns/concepts/#zone-apex), removing the need for those other record types.

[^1]: A process in which Cloudflare returns an IP address instead of the target hostname that a CNAME record points to.
Loading