有没有办法忽略包含DOT的所有路线?像routes.IgnoreRoute(@"\.")
问题背景:
我有一个已定义路线的React js前端应用程序
<Route path="patients/new" component={PatientRegistration}/>
但是,如果我输入localhost:port/patients/new
,我收到了错误
我不确定为什么会发生这种情况,但忽略点的解决方法应该有效。
ASP.NET MVC当前RegisterRoutes.cs :
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapPageRoute("Default", "{*anything}", "~/index.html");
}