Your website can be accessed with or without the www prefix. Since search engines judges this to be duplicated content, you have to choose either with or without the www prefix. But since some links are outside of your website scope and the search engines might already have indexed your website under both addresses, you can’t change that easily. In this case do a 301 redirect for all http requests that are going to the wrong URL.
Example 1- force www prefix
(Add the following code to your .htaccess file)
(Add the following code to your .htaccess file)
(Add the following code to your .htaccess file)
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
(Add the following code to your .htaccess file)
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]