|
Don't use cpanel. Just go into you .htaccess file. This will accomplish the same thing, for your users, and for search engines. And it's far more flexible, although, with great utility comes great frustration.
I wish I could give you more specific advice on how to work with mod_rewrite, but I can at least give you the sample code that works for me. I used to use landscapephoto.us for my domain name, and after expanding beyond landscapes, changed to forrestcroce.com, so needed 301 ( permanent ) redirects to carry the "linkjuice" from the old domain to the new one. This snippet redirects to the new domain, and forces not using a www subdomain. While I can't explain all of the syntax here, I think you can just replace my domain name with yours and have this work:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^forrestcroce\.com [NC]
RewriteRule ^(.*) http://forrestcroce.com/$1 [R=301,L]
If not, there are some bright people who will be able to point out what else needs to be changed, or other approaches you might take.
|