The routes I am trying to match
/api/auth/business (exact)
/api/auth/business/anything-here-except-login (I don't want to match /api/auth/business/login)
Currently, I have /api/auth/:application{/*path} but this matches /api/auth/business/login.
What do I have to write to not match login?