How can I redirect all not found page requests to the same view?
This illustrates somehow what I mean:
config.RouteTable.Add("Home", "*", "Views/Home.dothtml", new { });
The idea behind is that when someone accesses a not existing page:
http://localhost/WhatEverNonExistingPage
The resquest is redirected to
http://localhost/Home