I want to pass in a url to an MVC url like so:
https://localhost:port/info/[url]
I am passing in the [url] as a url encoded string and I still get a 404 error.
So the resulting url is:
https://localhost:42901/info/http%3A%2F%2Fwww.google.com
And I want the info Action to be able to access http%3A%2F%2Fwww.google.com and ultimately forward to the passed in url.
Is this possible with MVC 5? If so, is it an IIS setting?