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:
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
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.