Конечно. Установите маршруты, и вы готовы идти:
routes.MapRoute(
"Query",
"query/{id}",
new { controller = "Query", action = "Index", id = UrlParameter.Optional }
);
и в вашем QueryController:
public ActionResult Index(string id)
{
... do something with the id here
}