UnderHost
Knowledgebase Docs

DirectAdmin Parked Domains: Manage Multiple Domains

Setup parked domains in DirectAdmin. Point multiple domains to one website, manage DNS, configure redirects, track parked domains efficiently.

On this page

A parked domain points to the same website as your primary domain. You own multiple domains, but they all serve the same content. This is useful for protecting your brand (buying common misspellings), consolidating traffic, or managing different business names. DirectAdmin makes managing parked domains simple.

What is a Parked Domain

Example scenario:

  • Primary domain: yourbusiness.com (shows real website)
  • Parked domain: yourbusinesscorp.com (points to yourbusiness.com)
  • Parked domain: yourbusiness-shop.com (points to yourbusiness.com)
  • Result: All three domains show identical website, same content

How it works:

  • Visitor goes to yourbusinesscorp.com
  • DNS points to your server
  • Visitor sees yourbusiness.com website
  • URL stays yourbusinesscorp.com (optional redirect)

Use Cases

ScenarioExample
Brand protectionOwn yourbusiness.com AND yourbussiness.com (misspelling)
Multiple namesCompany has 2 names: old.com and new.com
Consolidate trafficCollect customers from multiple domains
SEO benefitRedirect old domain to new one, keep SEO value
Region targetingyourbiz.com and yourbiz.co.uk for different regions

Setup Parked Domain

In DirectAdmin user panel:

  1. Login to DirectAdmin (yourdomain.com:2222)
  2. Click "Parked Domains" in left menu
  3. Enter domain to park: yourbusinesscorp.com
  4. Click "Add Domain"
  5. DirectAdmin auto-creates symlink to primary domain
  6. Website now accessible at both domains

As administrator (cPanel for comparison):

  • DirectAdmin Admin → Manage User → Parked Domains
  • Add parked domain to customer account
  • Customer can then manage it themselves

DNS Configuration

Update DNS for parked domain:

Your registrar (GoDaddy, Namecheap, etc.) → Domain → DNS Settings

# Point parked domain to your server
A Record: yourbusinesscorp.com → 203.0.113.25 (your server IP)
AAAA Record: yourbusinesscorp.com → [your IPv6]

# WWW subdomain (optional)
A Record: www.yourbusinesscorp.com → 203.0.113.25

Verify DNS propagation:

nslookup yourbusinesscorp.com
# Should show: 203.0.113.25

# Or check with online tools:
# https://mxtoolbox.com/

Domain Redirects

Option 1: Show website content without redirect (simple parked)

  • User visits yourbusinesscorp.com
  • Sees yourbusiness.com website
  • URL stays yourbusinesscorp.com in address bar

Option 2: Redirect to primary domain

  • User visits yourbusinesscorp.com
  • Automatically redirects to yourbusiness.com
  • URL changes in address bar
  • Better for SEO (consolidates link authority)

Setup redirect in DirectAdmin:

# Create .htaccess in yourbusinesscorp.com public_html
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?yourbusinesscorp\.com$ [NC]
RewriteRule ^(.*)$ https://yourbusiness.com/$1 [R=301,L]

Managing Parked Domains

View all parked domains:

  • DirectAdmin User Panel → Parked Domains
  • List shows all parked domains for this account
  • Remove domains you no longer need

Add SSL to parked domains:

  • Let's Encrypt certificates cover all parked domains
  • DirectAdmin → SSL → Add Certificate → Multi-Domain
  • List all parked domains in certificate request

Email for parked domains:

  • By default, only primary domain can have email
  • To add email to parked domain: Contact admin or upgrade to additional domain account

Best Practices

  • Use 301 redirects: Tells search engines domain is permanently moved (keeps SEO value)
  • Keep old domain DNS active: Some customers may have old bookmarks
  • Don't park too many domains: Can trigger spam filters
  • Update email records: Add MX records if you want email for parked domain
  • Monitor traffic: Check if parked domain gets legitimate traffic

Troubleshooting

Parked domain shows "domain not found"

  • Check DNS: nslookup yourbusinesscorp.com
  • Verify domain added in DirectAdmin correctly
  • Wait 24-48 hours for DNS propagation
  • Check registrar DNS settings (pointing to correct server)

Shows wrong website

  • DirectAdmin may have cached domain list
  • Rebuild Apache/Nginx: /usr/local/directadmin/custombuild/build all
  • Wait 5 minutes for rebuild

SSL certificate not working on parked domain

  • Ensure parked domain listed in SSL certificate (multi-domain)
  • Regenerate SSL certificate including all parked domains
  • Clear browser cache (CTRL+SHIFT+DEL)
Parked domains with 301 redirects preserve SEO value

Using 301 redirects (permanent redirect) transfers search ranking from old domain to new one. This is ideal when migrating to a new domain name.

Related: DirectAdmin setup | Domain management | DNS setup | Redirects

Was this article helpful?

Need DirectAdmin hosting?

DirectAdmin is available for customers who want a lightweight hosting control panel on compatible UnderHost services.

Related articles

Back to DirectAdmin