Route all URL’s to Home controller action C# MVC

I want to create a URL re-director in c#, so whenever my MVC application base url is hit with parameters i want to redirect it to other url based on parameters in the url (site, folder, file, id, etc)
Eg: http://localhost:8080/site/folder/file/id or http://localhost:8080/site/folder/file or http://localhost:8080/site/folder etc.
So request url can be of any type, only base url will be fixed.