How to Redirect Domain in cPanel
Posted about 5 months ago 4.3kUsing Redirects Tool
Easiest method: No .htaccess editing required.
Add New Redirect
cPanel → Domains → Redirects → Type: Permanent (301) → Choose domain → Enter destination.
With or Without WWW
Check 'Wild Card Redirect' for all subpaths.
.htaccess Alternative
301 Redirect Code
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain\.com [NC]
RewriteRule ^(.*)$ https://newdomain.com/$1 [L,R=301]
Redirect Types Table
| Type | Use Case |
|---|---|
| Permanent (301) | Domain change |
| Temporary (302) | Maintenance |
| Wild Card | Full site move |