How to fix indexing a website on Google

I have a site that is already indexed by Google, but since I already published to the address when the site was still in tests, Google indexed some results like broken URLs, test pages, wrong descriptions, etc.

Do I need to create a new domain to index everything correctly, or is there some manual way to do the re-indexing of this site?

 0
Author: bfavaretto, 2014-07-05

1 answers

Or google automatically re-Indexes or site. There are Google tools for this. Take a look at this question about this: How to remove a Google site?

Aside from that I would say google likes stability. A domain too New won't get much attention from Google, so changing the domain too easily is bad.

What you should do is create a site map and redirect the pages that don't exist.

About sitemap, it is a sound file name sitemap.xml that should be in the toor of the site with information about the links of the site. You can generate one automatically here: http://www.xml-sitemaps.com / and then edit to fix details.

Google has a very informative page about the sitemap: https://support.google.com/webmasters/answer/183668?hl=en

Is an example of the syntax:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 
  xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" 
  xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
  <url> 
    <loc>http://www.example.com/foo.html</loc> 
    <image:image>
       <image:loc>http://example.com/image.jpg</image:loc> 
    </image:image>
    <video:video>     
      <video:content_loc>
        http://www.example.com/video123.flv
      </video:content_loc>
      <video:player_loc allow_embed="yes" autoplay="ap=1">
        http://www.example.com/videoplayer.swf?video=123
      </video:player_loc>
      <video:thumbnail_loc>
        http://www.example.com/thumbs/123.jpg
      </video:thumbnail_loc>
      <video:title>Grilling steaks for summer</video:title>  
      <video:description>
        Get perfectly done steaks every time
      </video:description>
    </video:video>
  </url>
</urlset>
 3
Author: Sergio, 2017-04-13 12:59:39