我想知道,如何在主页(默认页面)上启用ASP.NET路由。我知道如何在其他页面上执行此操作,但这在default.cshtml
页面上是不可能的,或者我不知道该怎么做!
比如我可以:
// do this:
localhost:xxxx/page_name/customword/anotherword
// but I cannot do this:
localhost:xxxx/customword
如何实现此类结果,以便我也可以为默认页面设置自定义单词。
第二件事,如何在URL中启用 。 的使用,例如:
localhost:xxxx/custom.word // better isn't it than customword
当我在URL中使用句点时,它会查找具有该名称的页面,即使它位于ASP.NET路由中!
如何启用这两项?