hi one of my domain soma url come without www example : mysite.com but i want www. my site .com so i have change prefer domain and remove all mysite.com url from google using google webmaster tool now i want to index all pages www. my site .com but it will not come ..its one week i have added code in robots.txt User-agent: * Allow: / and resubmit the sitemap.xml in google webmaster tool started link building as well what can i do ?
dear you have choose wrong way its not done from webmasters buddy you just need to resolve 301 redirect then its automatically will open with www.abc.com
You must to implement 301 permanent redirection with WWW with the help of .htaccess file. Then create sitemap.xml file and submit in Google Webmaster Analytic Tool. After few days all urls of your website will index with www.
301 redirection is the first move to do then uncrawl or close the previous site. Then focus on your latest site and see some errors then fix it. Make sure that your site was done in onpage optimization before you launch it.
its depends on your keyword traffic. if you once delete the old domain delete the all back link.then you create the new domain its must be new domain. mysite.com and www.mysite.com both are different in google point of view
first thing, to tell Google about your preferred version, set your preferred domain in Google webmaster tool and use canonical tags as well. Second thing, by default, robots.txt file allow spiders. You don't have to specify this in the file.
301 permanent redirection is needed. After that your site will open with complete URL i.e. http://www.abc.com
Try building more backlinks and then getting those backlinks crawled. I'd recommend linklicious' free service to do so.
you can specify that in the google webmaster tools either you can choose www or without www. But, for that you need to verify both of your www.mysite.com and also mysite.com, then only you will be able to choose the preferred one.
They were right. You will need to do a 301 redirect from without www to with www. You can use htaccess to do this or you can simply use the cpanel.
Hi, Site not came in Google. analysis site more briefly that will help you alot and get your ranking .
301 Redirect Examples To Move a single page Quick, easy and seamless for your visitors. Redirect 301 /oldpage.html http://www.example.com/newpage.html To Move an entire site This will catch any traffic on your old site and redirect it to your index page on your new server. If you want to redirect each page to its new spot, this isn't the one for you. Redirect 301 / http://www.example.com/ Changed file extension? This example is perfect if you've decided to switch to .php from .html pages. It will look for any .html page and redirect it to .php (ie http://www.example.com/yourpage.html and redirect it to http://www.example.com/yourpage.php). Now, be careful with this, it does mean any html page. I did this on one of my sites and had totally forgotten I had an iframe with .html content on some pages... I didn't notice for weeks that it was broken :S. So learn from my mistake ;-) check, double check, then check again. RedirectMatch 301 (.*)\.html$ http://www.example.com$1.php Redirect www to non www version of site It's best to stick with either always using www.example.com or just example.com. Allowing both can confuse the search engines. So here's how to force your site to always show the non-www version. (Search for "canonical url errors" in your favorite search engine for more info.) Note: If you do use either of the next 2 codes below, and use a secure server (ie. https be sure to check that it doesn't redirect the secure to the insecure version. I'm pretty sure this will do that and that isn't something you want! Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^example\.com RewriteRule (.*) http://example.com/$1 [R=301,L] Redirect non-www to www Same as above except in the reverse, this one forces the www. into your url. Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301] Redirect example.com/index.php to example.com/ Another snippet that I've heard is a good idea to make sure search engines don't give you a duplicate content penalty, this will also redirect example.com/folder/index.php to example.com/folder/. Options +FollowSymLinks RewriteEngine on # index.php to / RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/ RewriteRule ^(.*)index\.php$ /$1 [R=301,L] I might add more later as I need them, for now those are the one's I use on a few different sites I run. Remember, I can't stress enough to test, test and re-test anything you do to your .htaccess file. Method 2 - PHP Redirect This works well if your pages are php enabled, simply place this code at the very top of the old file and your visitors will be smoothly sent to the new location. <?php Header("HTTP/1.1 301 Moved Permanently"); Header("Location: http://www.example.com/"); ?> Method 3 - Meta Redirect I'd really advise against redirecting this way since many search engine have difficulties with this one (and spammers have been known to use this in very bad ways) so it might get your page in a heap of trouble! Some browsers also don't read it properly so your would-be visitors may get stranded. Seriously, it really isn't advisable to use this anymore but if you don't have access to php or an .htaccess file on your host it might be the best (or only) way so here it is. <meta http-equiv="refresh" content="10; url=http://example.com/"> Content="10; tells the browser to wait 10 seconds before transfer, choose however long you would like, you can even choose 0 to give a smoother transition.
use 301 redirect as written above and then post some links to your site to social bookmarks and/or buy few tweets for fast indexing.