How remove url cloning, my website run both www and non www. How to effect SEO result. What are the methods for this
this is called as Connanical Issue.. Google consider it as 2 websites.., so better rectify this problem ASAP.., u need rite a code in ".htaccess" file which is available in root folder of hosting server..,
Again it is not a big issue by google. If you site has old domain, google will not disturb your search results due to this
It's an annoying issue which can pretty easily be fixed, hopefully this article will help you: http://www.stepforth.com/resources/web-marketing-knowledgebase/non-www-redirect/
You can use canonical link element in the meta tags of your website. There you can define your preferred URL and Google will automatically consider these URL to your preffered URL. The other thing that you can do is put 301 redirect on the unwanted version of the URL.
Yes, this will impact your SEO. Your backlinks will split and you may not get complete credit of backlinking. - Set your preferred location Google webmaster tools. - Redirect your website version to preferred version of your website
Not a big issues, when you do submit your site in different directories or commenting or posting blogs and what kind of activity you do for your website put same URL and if you write www or without it.
it's called 301 redirect, you should redirect your website non-www to www. you should put a code at .htaccess, agreed with above people which are given reply for this thread. thank you
Here's what I make a habit of doing before I release and market my website: Open a text editor (I use Dreamweaver) Create a new document and save it as .htaccess (the dot must be there for the file to work) In this new file called .htaccess, copy and paste the following lines: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www.[B]yourdomain[/B].com [NC] RewriteRule ^(.*)$ http://[B]yourdomain[/B].com/$1 [L,R=301] Code (markup): Replace yourdomain with your URL Now upload the .htaccess file to the root directory of your domain Your website links should now redirect to the non-WWW version.