Open Zhu-jiatong opened 5 months ago
Change URL matching to use exact match instead of startsWith(_uri). This could improve the URL matching experience and enable he use of nested URLs, such as "/file" and "/file/add".
Change: !request->url().startsWith(_uri) -> request->url() != _uri
!request->url().startsWith(_uri)
request->url() != _uri
Change URL matching to use exact match instead of startsWith(_uri). This could improve the URL matching experience and enable he use of nested URLs, such as "/file" and "/file/add".
Change:
!request->url().startsWith(_uri)
->request->url() != _uri