this is one of my routes:
routes.MapRoute(
    name: "PR",
    url: "Home/PageRank/{id*}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
but when I use this url http://localhost:56828/Home/PageRank/google.com I'm getting 404 error.