在路由表中找不到操作?
刚刚开始我的第一个 MVC 2.0 .net 应用程序。我设置了一些默认页面,例如:
/Loa/Register
/Loa/About
但是当我请求 /Loa/sdfqsdf
(随机字符串)时,我收到 “找不到资源。”
错误,如何解决我可以将这个不存在的操作重定向到默认操作吗?
就像“未找到操作”默认操作一样?
谢谢!
Just started my first MVC 2.0 .net application. And I set up some default pages like:
/Loa/Register
/Loa/About
But when I request for /Loa/sdfqsdf
(random string) I get the "The resource cannot be found."
error, how can I redirect this non-existing action to a default action?
Like an "action not found" default action?
thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用路由
您可以定义多个路由(这在现实生活中的 MVC 应用程序中也很常见),因为某些路由具有与默认设置不同的特定设置。尤其是如果你想做体面的搜索引擎优化。
如果您要向路由表添加其他路由,只需确保将
InvalidRoutes
定义为最后一个即可。Using routes
You can define more than one route (which is also quite common in real-life MVC applications), because some routes have particular settings that differ from the default one. And especially if you want to do decent SEO.
If you'll add additional routes to our route table, just make sure the
InvalidRoutes
is defined as the last one.