I notice strange behaviour in Google Webmaster Tools. Google crawler found some links that doesn't exists. I first though that Google doesn't handle properly my (ajax) sitemap.xml, until I notice this 404 error in Webmaster Tools:
URL:https://domerus.si/realestates/*id
The only place where string "realestates/*id" appears is in init kendo router route:
Application.router.route(
'/realestates/*id'
,
function
(id)
{
if
(id) //load content and add it to the DOM
Application.navigate(
"realestates"
,
null
, { name: id, fileName:
"realestate"
, parameters: { ID: id } });
});
I already asked how can I fix this on Google support, but since I am starting to feel kendo is responsible for this, I am also posting it here.