我正在尝试将 ASP.Net 中的 URL 路由用于非 aspx 文件扩展名
当我开始使用 asp.net 时,我的代码变得凌乱,并且在很多文件夹中结构化为了隐藏我的目录路径并获得有意义的比较 URL,我使用了 URL 路由有几个文档,对我来说最简单的教程是http:/ /www.4guysfromrolla.com/articles/051309-1.aspx
默认情况下,URL 路径显示我的完整文件夹结构,为了隐藏此信息,我使用 URL 路由在以下代码之后,我被允许使用带有虚拟路径的重定向
RouteTable.Routes.Add("login", new Route("login", new RouteHandler(string.Format("~/…/Login.aspx"))));
如果您使用 HTML 等非 .aspx 文件扩展名,则需要在 web.config 中为该扩展名添加 Buildproviders
例子:
RouteTable.Routes.Add("testhtml", new Route("testhtml", new RouteHandler(string.Format("~/.../test.html"))));
网络配置:
<system.web>
<compilation debug="true" targetFramework="4.6.1" >
<buildProviders >
<add extension=".html" type="System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
</compilation>
<…>
现在http://localhost:58119/testhtml与http://localhost:58119/.../test.html相同,路径完整
我的问题
默认情况下,ASP.net 可以重定向到 ~/…/test.pdf 或 ~/…/test.png。
使用 URL Routing 它再次要求文件扩展名的 buildproviders。
但是如果我是正确的,msdn 文档中没有这些扩展的默认构建提供程序:/