0

我想为我的应用程序使用分层 url。如何创建?

例如我的数据库层次结构如下,

  My product table
     |
     |--> Electronics
             |
             |--> Television
                       |
                       |--> Led Tv
                               |
                               |--> Samsung Led Tv
                               |--> Philips Led Tv
                               |--> LG Led Tv

我想创建分层网址,例如http://mydomain.com/product/electronics/television/led_tv/samsung_led_tv

4

3 回答 3

2

您正在寻找URL-rewriting

在 ASP.NET 中,您可以利用 IIS URL 重写模块来获取它:

http://www.iis.net/downloads/microsoft/url-rewrite

于 2012-11-09T06:47:19.643 回答
1

使用 URL 重写

http://weblogs.asp.net/owscott/archive/2012/11/07/url-rewrite-protocol-http-https-in-the-action.aspx

或者

用于 SEO(搜索引擎优化)友好 URL 的ASP.NET MVC 。

于 2012-11-09T06:49:54.583 回答
0

我找到了一个关于我的问题的样本。http://erraticdev.blogspot.com/2011/01/custom-aspnet-mvc-route-class-with.html

于 2012-11-09T08:56:15.797 回答