我怎样才能将此网址路由到正确的路由映射?

发布于 2024-11-15 16:52:11 字数 244 浏览 3 评论 0原文

localhost/myfile.xml 请求此 url,我正在尝试将其转换为 Home 控制器的 Config 操作。我的解决方案如下,但异常表示路由不能包含 '/' 字符。我怎样才能做到这一点?

    routes.MapRoute("config",
        "/crossdomain.xml",
        new {controller="Home",action = "Config" }); 

localhost/myfile.xml This url is requested and i am trying to convert it to Home controller's Config action . My solution is at below but exception says routing can't include '/' character . How i can do this ?

    routes.MapRoute("config",
        "/crossdomain.xml",
        new {controller="Home",action = "Config" }); 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遇见了你 2024-11-22 16:52:11

删除前导斜线;你不需要(也不可能拥有)它在路线中。

Remove the leading slash; you don't need (and cannot have) it in a route.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文