0

这是我的路线之一:

routes.MapRoute(
    name: "PR",
    url: "Home/PageRank/{id*}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);

但是当我使用这个网址时http://localhost:56828/Home/PageRank/google.com,我得到了 404 错误。

4

1 回答 1

1

网址中的.可能会导致问题。尝试在您的 Web.config 中进行以下设置,看看它是否有效。<system.webServer> <modules runAllManagedModulesForAllRequests="true"/>

于 2013-06-12T18:40:30.307 回答