I have a need to get everything after "/proxy" in my web application. Here are some example URLS:
/proxy/HU91r//www.dde3.xhyzlkejkeje.3322.es/es/px
/proxy/7ZROK?si=0&e=http%3A%2F%2Fsecdd-uat.clsssapp
/proxy/someapp.js?_t=something&_r=bla.html&_a=s&_n=39393
How do I get everything after "/proxy"? I tried doing this:
[Route("proxy/*")]
public string Get() {
// do stuff with request here..
}
But that didn't work. It's like the "*
" isn't being honored.