cPanel allows you to host additional websites under the same hosting account using Addon Domains. Each addon domain gets its own content, email addresses, FTP access, and functions as an independent website — all managed from a single cPanel login.
Log in to your cPanel account and go to Domains.
domain2.com
)./public_html/domain2.com
).Log in to your domain registrar and update the nameservers of your new domain (e.g. domain2.com
) to match the ones provided in your hosting account’s welcome email (typically same as your primary domain).
⚠️ DNS propagation can take 4–48 hours depending on your registrar and ISP.
You can upload your website files using:
/public_html/domain2.com/
To set up email addresses like info@domain2.com
, go to Email Accounts in cPanel and create them there.
Use these settings in your email client:
mail.domain2.com
mail.domain2.com
If you'd like to redirect requests to yourprimarydomain.com/domain2
to the main domain, add the following to .htaccess
inside /public_html/domain2.com/
:
RewriteEngine On RewriteCond %{HTTP_HOST} ^domain2.primary-domain.com$ [OR] RewriteCond %{HTTP_HOST} ^www.domain2.primary-domain.com$ RewriteRule ^(.*)$ http://www.domain2.com [R=301,L] RedirectPermanent /domain2 http://www.domain2.com
If you have any questions or need help, please create a support ticket.
Add Comment