Follow the simple example below to have .yoursite.com redirect to www.yoursite.com.
Word of warning, you will have to edit your .htaccess file to accomplish this. Please be careful and always make a backup of the original just in case there is a problem.
First, open your .htaccess file with a plain text editor such as notepad. Next copy and paste the following code into the .htaccess file;
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]
Next, simply replace “yoursite” with your unique URL, save and upload. Now when somebody types in yoursite.com they will be automatically redirected to www.yoursite.com.























