当请求包含多个路径并且 URL 总是以 /end 结尾时,我试图找到一种匹配路由的方法
例如:
domain.com/api/path1/path2/path3/end
domain.com/api/path1/path2/path3/path4/end
我试过[Route("api/{p:regex(([[\\w-]]*\\/){{1,}})}end")]
了,但这没有用。
有什么推荐吗?
当请求包含多个路径并且 URL 总是以 /end 结尾时,我试图找到一种匹配路由的方法
例如:
domain.com/api/path1/path2/path3/end
domain.com/api/path1/path2/path3/path4/end
我试过[Route("api/{p:regex(([[\\w-]]*\\/){{1,}})}end")]
了,但这没有用。
有什么推荐吗?