我希望能够自动匹配传入请求路由左侧可能有或没有前缀的路由。
例如,对于此控制器
[MyRoutePrefix("api/hello-world")]
public class MyController
{
[Route("")]
public IHttpActionResult Get(){ return OK(); }
}
我希望以下请求与MyController匹配:
http://example.com/api/hello-world
http://example.com/us/api/hello-world
http://example.com/any-word/api/hello-world
感谢。