This rule will redirect all none SSL traffic to the SSL (HTTPS) portion of your site RewriteEngine On RewriteCond %{SERVER_PORT} !=443 RewriteRule ^ https://yourdomain.com%{REQUEST_URI} [NS, R, L] |
If your SSL is for www.yourdomain.com you will want to use the first rule to redirect all yourdomain.com traffic to www.yourdomain.com This rule will direct all traffic to yourdomain.com to www.yourdomain.com RewriteEngine on RewriteCond %{HTTP_HOST} ^yourdomain.com$ RewriteCond %{REQUEST_URI} !^.*www.*$ RewriteRule ^(.*)$ http://www.yourdomain.com [R=301] |
If your SSL is for yourdomain.com you will want to use the first rule to redirect all www.yourdomain.com traffic to yourdomain.com This rule will direct all traffic to www.yourdomain.com to yourdomain.com RewriteEngine on RewriteCond %{HTTP_HOST} ^www.yourdomain.com$ RewriteRule ^(.*)$ http://yourdomain.com [R=301] |
*replace yourdomain.com with the domain you need to redirect to.
For more information on rewriting rules, you can go to Apache.org
A video on creating redirects on cPanel can be found here. Note that some applications like WordPress will use redirects already in your .htaccess file to function. Because of this, you may need to edit your .htaccess file and move the redirects cPanel creates above the ones already in your .htaccess file.
No worries, Our experts are here to help.