ASP.NET:路由规则
来自 PHP 背景的我知道我们可以在 CakePHP 和 CodeIgniter 中配置类似的内容:
将所有请求发送到 http: //mydomain.com/admin/product/view 由产品控制器和 admin_view 方法处理。
public function admin_view()
将处理对 /admin/product/view 的请求,同时
public function view()
将处理对 /product/view 的请求
我如何在 ASP.NET MVC 中执行此操作?有人可以帮忙吗?谢谢。
coming from PHP background I know that we can configure something like this in CakePHP and CodeIgniter:
To have all request to http://mydomain.com/admin/product/view to be handled by Products controller and admin_view method.
public function admin_view()
will handle request to /admin/product/view, while
public function view()
will handle request to /product/view
How do I do this in ASP.NET MVC? Anyone can help? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ASP.NET MVC 中的区域概念来组织此类代码。此链接会有所帮助。
You may organize this type of code using the areas concept in asp.net MVC. This link will help.