我想在我的快速服务器上忽略 /foo/* 形式的所有路径。所以我想做
app.get('someRegexThatDoesntMatchFoo/*', routes.index)
我努力了
app.get('/^\(\(.*foo/.*\)\@!.\)*$', routes.index);
但这没有用-它没有捕获all-routes-besides-foo
并应用,routes.index
而是我得到了CANNOT GET bar
任何/bar
请求
有什么建议么?
谢谢!