I have a controller and various action methods. I have url as:
http://localhost:2032/Info/person
I have a requirement that if I enter any wrong controller and action in the URL, it should still redirect it to the above given URL.
Example-if I enter http://localhost:2032/asjjsjdj
or http://localhost:2032/info/djwsk
it should redirect to http://localhost:2032/Info/person
Please let me know how do I do that?