IIS URL Rewriting vs URL Routing - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:28:10Zhttp://stackoverflow.com/feeds/question/90112http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing16IIS URL Rewriting vs URL RoutingGulzar2008-09-18T04:45:55Z2009-03-09T07:15:04Z
<p>I was planning to use url routing for a Web Forms application. But, after reading some <a href="http://learn.iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/" rel="nofollow">posts</a>, I am not sure if it is an easy approach.</p>
<p>Is it better to use the <a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" rel="nofollow">URL Rewrite module</a> for web forms? But, it is only for IIS7. Initially, there was some buzz that URL routing is totally decoupled from Asp.Net MVC and it could be used for web forms.</p>
<p>Would love to hear any suggestions..</p>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/90120#901205Answer by DevelopingChris for IIS URL Rewriting vs URL RoutingDevelopingChris2008-09-18T04:47:02Z2008-09-18T04:47:02Z<p>Do you want formatted urls to be a factory for spawning pages?</p>
<p>or do you want to make the .aspx go away?</p>
<p>rewriting, is for making the .aspx go away, or just to tidy up the url.</p>
<p>Routing, is for looking at a request and determining which object should handle it. They sound similar, phil haack has a few good articles on the subject.</p>
<p><strong>in iis6, isapiRewrite, is very good</strong></p>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/90127#901270Answer by Norge for IIS URL Rewriting vs URL RoutingNorge2008-09-18T04:48:56Z2008-09-18T04:48:56Z<p>The Dynamic Data project that is available with .Net 3.5 SP1 shows a good example of a url routing implementation.</p>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/92854#928542Answer by Dale Ragan for IIS URL Rewriting vs URL RoutingDale Ragan2008-09-18T14:08:34Z2008-09-18T14:08:34Z<p>You may want to check out my <a href="http://stackoverflow.com/questions/22869/aspnet-building-your-own-routing-system#22966">answer</a> to this question: <a href="http://stackoverflow.com/questions/22869/aspnet-building-your-own-routing-system">ASP.NET - Building your own routing system</a>. I include some good references to help build your own routing system with either using the url rewriting method or the new routing engine that you can use that came out of the ASP.NET MVC project.</p>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/92993#929933Answer by HBoss for IIS URL Rewriting vs URL RoutingHBoss2008-09-18T14:23:37Z2008-09-18T14:23:37Z<p>I recently just wrote my own rewriting system to make the URLs on my sites look better. Basically, you're going to need to write your own <a href="http://msdn.microsoft.com/en-us/library/system.web.ihttpmodule.aspx" rel="nofollow">IHttpModule</a> and add it to your web.config to intercept incoming requests. You can then use the HttpContext.Current.RewritePath to change what you're pointing at.</p>
<p>You'll also want to configure your site to <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/5c5ae5e0-f4f9-44b0-a743-f4c3a5ff68ec.mspx?mfr=true" rel="nofollow">use the aspnet_isapi for everything</a>. </p>
<p>You'll discover a lot of little problems along the way like trying to work with pages that use "tails" on them (like for PageMethods), or pathing of page elements and form postbacks, but you'll get through them.</p>
<p>If interested, I can post a link to the code and you can check it out. I've worked a lot of the problems out already so you can read through it as you go. I'm sure there are a lot of other people that have done this as well that might be good resources as well.</p>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/93844#9384410Answer by Haacked for IIS URL Rewriting vs URL RoutingHaacked2008-09-18T15:55:04Z2008-09-18T15:55:04Z<p>There's a <a href="http://ruslany.net/2008/09/aspnet-routing-request-filtering-url-rewriting/" rel="nofollow">great post here</a> about the differences between the two from a member of the IIS team.</p>
<p>One caveat I would advise is that for WebForms, you need to be careful when using Routing. I've written a sample implementation of how you'd use <a href="http://haacked.com/archive/2008/03/11/using-routing-with-webforms.aspx" rel="nofollow">routing with WebForms</a> that addresses these concerns and hopefully helps answer your question.</p>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/275043#27504311Answer by splattne for IIS URL Rewriting vs URL Routingsplattne2008-11-08T18:55:35Z2008-11-08T18:55:35Z<p>The best article I found about it is this one: <a href="http://learn.iis.net/page.aspx/496/iis-url-rewriting-and-aspnet-routing/" rel="nofollow">IIS URL Rewriting and ASP.NET routing</a> by Ruslan Yakushev.</p>
<h2>IIS URL Rewriting</h2>
<p>When a client makes a request to the Web server for a particular URL, the URL-rewriting component analyzes the requested URL and changes it to a different other URL on the same server. The URL-rewriting component runs very early in the request processing pipeline, so is able to modify the requested URL before the Web server makes a decision about which handler to use for processing the request.</p>
<p><img src="http://learn.iis.net/file.axd?i=1156" alt="alt text" /></p>
<h2>ASP.NET Routing</h2>
<p>ASP.NET routing is implemented as a managed-code module that plugs into the IIS request processing pipeline at the Resolve Cache stage (PostResolveRequestCache event) and at the Map Handler stage (PostMapRequestHandler). ASP.NET routing is configured to run for all requests made to the Web application.</p>
<p><img src="http://learn.iis.net/file.axd?i=1127" alt="alt text" /></p>
<p>Differences between URL rewriting and ASP.NET routing are the following:</p>
<ol>
<li>URL rewriting is used to manipulate URL paths <strong>before the request is handled by the Web server</strong>. The URL-rewriting module does not know anything about what handler will eventually process the rewritten URL. In addition, the actual request handler might not know that the URL has been rewritten.</li>
<li>ASP.NET routing is used to <strong>dispatch a request to a handler based on the requested URL path</strong>. As opposed to URL rewriting, the routing component knows about handlers and selects the handler that should generate a response for the requested URL. You can think of ASP.NET routing as an advanced handler-mapping mechanism. </li>
</ol>
<p>In addition to these conceptual differences, there are the following functional differences between IIS URL rewriting and ASP.NET routing:</p>
<ol>
<li>The IIS URL-rewrite module can be used with any type of Web application, which includes ASP.NET, PHP, ASP, and static files. ASP.NET routing can be used only with .NET Framework-based Web applications.</li>
<li>The IIS URL-rewrite module works the same way regardless of whether integrated or classic IIS pipeline mode is used for the application pool. For ASP.NET routing, it is preferable to use integrated pipeline mode. ASP.NET routing can work in classic mode, but in that case the application URLs must include file extensions or the application must be configured to use "*" handler mapping in IIS.</li>
<li>The URL-rewrite module can make rewriting decisions based on domain names, HTTP headers, and server variables. By default, ASP.NET routing works only with URL paths and with the HTTP-Method header.</li>
<li>In addition to rewriting, the URL-rewrite module can perform HTTP redirection, issue custom status codes, and abort requests. ASP.NET routing does not perform those tasks.</li>
<li>The URL-rewrite module is not extensible in its current version. ASP.NET routing is fully extensible and customizable. </li>
</ol>
http://stackoverflow.com/questions/90112/iis-url-rewriting-vs-url-routing/625268#6252680Answer by Cheeso for IIS URL Rewriting vs URL RoutingCheeso2009-03-09T07:15:04Z2009-03-09T07:15:04Z<p>For URL Rewriting on IIS, <a href="http://www.codeplex.com/IIRF" rel="nofollow">IIRF</a> works in IIS5, 6, 7. Free. Easy. Fast. Open Source. Regular expression support. </p>