我怎样才能将此网址路由到正确的路由映射?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除前导斜线;你不需要(也不可能拥有)它在路线中。
Remove the leading slash; you don't need (and cannot have) it in a route.