In a recent project, I built my own MVC infrastructure in PHP. One of the things I implemented is a routing system. I used Apache mod_rewrite to send all requests to index.php, and then parsed the URIs to extract information and route the request.
Now I'm doing ASP.NET, and I'm wondering how and how I can accomplish something like this. Is there a way to redirect all requests (similar to how WordPress does it) to one page where the routeβs central processing is done? I know the MVC framework for ASP.NET, but I would like to take a hit on it since I was messing around and learning.
EDIT: BTW, my hosting provider is launching IIS 6
Brian Warshaw Aug 22 '08 at 16:58 2008-08-22 16:58
source share