ASP.NET MVC忽略包含点

时间:2017-09-05 21:31:02

标签: c# asp.net

有没有办法忽略包含DOT的所有路线?像routes.IgnoreRoute(@"\.")

这样的东西

问题背景:

我有一个已定义路线的React js前端应用程序 <Route path="patients/new" component={PatientRegistration}/> 但是,如果我输入localhost:port/patients/new,我收到了错误

  

http://localhost:5425/patients/built/bundle.js 404(未找到)

我不确定为什么会发生这种情况,但忽略点的解决方法应该有效。

ASP.NET MVC当前RegisterRoutes.cs

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapPageRoute("Default", "{*anything}", "~/index.html");
}

0 个答案:

没有答案