I received this message... Search engines may think www.redcyc.com and redcyc.com are two different sites. You should set up a permanent redirect (technically called a "301 redirect") between these sites. Once you do that, you will get full search engine credit for your work on these sites. My registrar is register.com, what is the easiest way to do this? If there have been previous posts I can be referred to, I would appreciate it... Thanks ------------------------------------- Dale
There is a .htaccess file in apache service, you can set here your url setting or read for more mcanerin.com/EN/articles/301-redirect-IIS.asp highposition.net/301redirect.html
Assuming you are on one of those shared hosting and Apache is your server and mod_rewrite is turned on, and host yoursite.com and www.yoursite.com point to the same root directory of the server, you can create an .htaccess file in web root with the following Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^yoursite\.com RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=permanent,L]
Below is the better method to use in .htaccess when redirecting non-www to www. RewriteEngine on RewriteCond %{HTTP_HOST} ^www.redcyc\.com$ [NC] RewriteRule ^(.*)$ http://www.redcyc.com/$1 [R=301,L] Code (markup):