Urls go like
domain/approved/education/kids/ and so-on
but I also have filter page in place that lets you do this
domain/approved/education-entertainment-business/kids/ and so on
which means list all kids articles no matter what Level1 category they fall in.
But that also means that
domain/approved/education/
and
domain/approved/education/kids-teenager-adult
list exactly the same content (assuming level2 only has 3 categories - kids, teenager and adult). How to handle duplicacy in this case? for the sake of canonical url and so on.
Also, My sitemaps should not worry about filtering URLs at all, right?
this is the route my thing is hitting and it should be hitting.
routes.MapRoute("DefaultRoutesWithParams",
"{action}/{category}/{ageGroup}/{gender}",
new { controller = "Home", category = "", ageGroup = "", gender = "" },
new { action = new homeActionConstraint() });