A domain pointer (also called a parked domain or domain alias) makes an additional domain name display the same website as your primary domain. For example, if your main site is mybusiness.com, you can point my-business.com and mybusinessllc.com to show the exact same content. Visitors see the same site regardless of which domain they type. This guide covers how to set up pointers, when to use them, and the SEO implications.
Domain Pointer = Same Website, Different Address
A domain pointer is the DNS equivalent of having multiple phone numbers ring the same phone. No matter which domain the visitor types, they see the same website content.
- ✓ mybusiness.com → your website
- ✓ my-business.com → same website
- ✓ mybusinessllc.com → same website
- ✓ All three show identical content from the same files
01. What Is a Domain Pointer?
In cPanel, a domain pointer (officially called an "Alias" in newer cPanel versions, formerly "Parked Domain") maps an additional domain to your primary domain's document root (public_html). The pointed domain doesn't get its own directory or its own set of files. It simply serves whatever content your main domain serves.
When someone visits the pointed domain:
- Their browser looks up the domain's DNS and connects to your hosting server
- The server sees that domain is an alias for your primary domain
- The server serves the same files from
public_html - The visitor's address bar still shows the domain they typed
The term "parked domain" has two different meanings depending on context. In cPanel, it means an alias (what we're discussing here). At a domain registrar, a "parked domain" means a domain that's registered but not pointed to any hosting and usually shows a placeholder page. These are completely different things.
02. When to Use Domain Pointers
Common reasons to point additional domains to your main site:
- Protect your brand - register common misspellings and variations of your domain (with and without hyphens, .net/.org versions) and point them to your main site
- Domain name change - you moved from
oldbusiness.comtonewbusiness.combut want the old domain to still work for people who have it bookmarked - Multiple TLDs - you own
yourbrand.com,yourbrand.net, andyourbrand.organd want them all to show the same site - Short URL - you have a short domain for print/radio advertising that points to your full domain
If you want the additional domain to show a different website (separate content, different design), use an Addon Domain instead. See Section 4 for the comparison.
03. How to Add a Domain Pointer in cPanel
Prerequisites
The domain you want to point must already be registered and its nameservers must point to Ultra Web Hosting (ns1.ultranameservers.com and ns2.ultranameservers.com). If the domain is at a different registrar, update the nameservers there first and wait for propagation (up to 48 hours).
Add the Alias
- Log into cPanel
- Click "Aliases" (or "Parked Domains" in older cPanel versions) - in the Domains section
- Enter the domain name - type the full domain you want to point (e.g.,
my-business.com) - Click "Add Domain"
That's it. The domain now serves your primary site's content. cPanel also automatically creates a DNS zone for the aliased domain and issues an AutoSSL certificate for it.
After adding the alias, email accounts can also be created for the pointed domain. Go to cPanel > Email Accounts and the aliased domain will appear in the domain dropdown. Each aliased domain can have its own email addresses independent of the primary domain.
04. Pointer vs Addon Domain vs Subdomain
Domain Pointer (Alias)
- Shows same site as primary domain
- No separate directory
- Used for brand protection, domain variations
- Both domains serve from
public_html
Addon Domain
- Completely separate website
- Has its own directory (e.g.,
public_html/otherdomain) - Own set of files, own databases
- Used for hosting multiple distinct websites
Subdomains (blog.yourdomain.com) are similar to addon domains: they get their own directory and can host separate content. The difference is they're part of your main domain name rather than a separate domain.
05. SEO Considerations
Having multiple domains serve the same content creates a duplicate content problem for search engines. Google may index both domains separately, splitting your ranking signals between them. Here's how to handle it properly:
Set Up a 301 Redirect (Recommended)
The best approach for SEO is to redirect the pointed domain to your primary domain with a 301 (permanent) redirect. This tells search engines "these are the same site, rank the primary domain." Add this to your .htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?my-business\.com$ [NC]
RewriteRule ^(.*)$ https://mybusiness.com/$1 [R=301,L]
Replace my-business\.com with your aliased domain (escape dots with backslashes) and mybusiness.com with your primary domain.
Or Use a Canonical Tag
If you can't use .htaccess redirects, add a canonical tag to your site's HTML <head> section. This tells search engines which domain is the "real" one:
<link rel="canonical" href="https://mybusiness.com/current-page-url" />
Most CMS platforms (WordPress, Joomla) handle canonical tags automatically based on the site URL configured in settings.
Don't just point multiple domains without a redirect or canonical tag. Google may choose the "wrong" domain as the canonical, or index both and dilute your rankings. Always designate one domain as primary.
06. Troubleshooting
"The domain is already pointed to an IP address"
The domain has an A record pointing elsewhere. Update the nameservers at your registrar to ns1.ultranameservers.com and ns2.ultranameservers.com, wait for propagation, then try adding the alias again.
Alias Shows "Not Secure" or No SSL
AutoSSL needs to issue a certificate for the new domain. This happens automatically but can take up to 24 hours after DNS propagation. Check cPanel > SSL/TLS Status. If the domain shows as pending, click "Run AutoSSL." If it shows an error, the most common cause is DNS not fully propagated yet.
Alias Shows cPanel Default Page Instead of Your Site
DNS hasn't propagated yet. The domain's nameservers still point to the old location. Check propagation status at whatsmydns.net. Wait until all locations show your Ultra server's IP.
Removing a Domain Pointer
In cPanel > Aliases, click "Remove" next to the domain. This removes the alias from your hosting account but does not cancel the domain registration. You still own the domain and can re-point it later.
Need Help With Domain Configuration?
If you're not sure whether to use a pointer, addon domain, or redirect, open a ticket and describe what you're trying to accomplish. We'll recommend the right approach.
Open a Support TicketQuick Recap: Domain Pointers
If you only do 5 things from this guide, do these:
- Pointer = alias - additional domain shows the same website as your primary
- Set nameservers first - the domain must point to ns1/ns2.ultranameservers.com before adding in cPanel
- Add in cPanel > Aliases - type the domain and click Add
- Add a 301 redirect - in .htaccess, redirect the alias to your primary domain for SEO
- Need a separate site? Use Addon Domain - pointers are for same-content only
Last updated March 2026 · Browse all DNS articles
