Search code examples
seoweb-crawlergoogle-crawlers

Incorrect title with link in google crawler


Recently I found a problem in my website, when I search a movie name in my site I found two link with the same title. Second search result has following problems:

  • The link refers to "shahrzad" movie
  • You find "mad max" movie name in the url
  • You find "abad o yek rooz" movie name in the title

These data are about three different pages. I got confused what's going on here. Recently I found some other link like this in google search Wrong URL that google show Correct URL that google show

enter image description here


Solution

  • Check head of your html page, maybe you use canonical tag in a wrong way, for example if you set another url to href attribute, you will have some serious SEO problem:

    <link rel="canonical" href="<some_url>" />
    

    For more information read this link.