Archive for the ‘ ISAPI Rewrite ’ Category

ISAPI Rewrite in ASP.NET

The ideal way to do rewriting for ASP.NET is use both ISAPI in combination with a .NET modue. ISAPI rewrite gives that edge of power over IIS that a class inside ASP.NET can’t, so urls can look like directories (‘/’) rather then .aspx pages, plus the ISAPI rewrite configuration file is very convenient and configurable. The .NET module comes in handy to rewrite the url from a dynamic location to the real location of the page and is able to resolve all the ~/ virtual directories in the process.
(more…)