Dynamic URL Rewriting with IIS6 - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T04:38:15Z http://stackoverflow.com/feeds/question/1336167 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1336167/dynamic-url-rewriting-with-iis6 0 Dynamic URL Rewriting with IIS6 jsims281 http://stackoverflow.com/users/81182 2009-08-26T16:58:00Z 2009-10-09T08:43:41Z <p>I've been tasked with making an already existing e-commerce site SE friendly - which in this case means (amongst other things) letting the user change the URL for each page/product through the back end. </p> <p>The site is an old asp site running on IIS6. I've started looking into <a href="http://www.codeplex.com/IIRF" rel="nofollow">http://www.codeplex.com/IIRF</a> and <a href="http://www.helicontech.com/isapi%5Frewrite/" rel="nofollow">http://www.helicontech.com/isapi_rewrite/</a> , but I'm a bit dubious about how to let the user change the URLS without them going into the server and hard coding them.</p> <p>Ionic's Isapi Rewrite Filter runs from a .ini file, so I'm thinking that I will get the back end of the site to write to this ini file based on form inputs.</p> <p>Does anyone have any experience or advice with regard to this?</p> <p>edit:server is dedicated</p> http://stackoverflow.com/questions/1336167/dynamic-url-rewriting-with-iis6/1336450#1336450 1 Answer by Nick Berardi for Dynamic URL Rewriting with IIS6 Nick Berardi http://stackoverflow.com/users/17 2009-08-26T17:53:08Z 2009-08-26T17:53:08Z <p>By change URL fro each page, I think you mean change slug, or do you actually mean URL. </p> <pre><code>Slug: www.somesite.com/products/{slug} URL: www.somesite.com/{url} </code></pre> <p>Here is how I would do it. </p> <p>Give an original structure like this:</p> <p>www.somesite.com/products.aspx?id=23</p> <p>with an end goal of it to look like</p> <p>www.somesite.com/products/the-product-to-be-sold</p> <p>Or better yet</p> <p>www.somesite.com/products/23/the-product-to-be-sold</p> <p>I would create a rule that looks like this.</p> <pre><code>RewriteRule /products/([0-9]+)/(.*) /products.asp?id=$1&amp;slug=$2 [NC] </code></pre> <p>That way you don't have to change anything, the name is in the URL for SEO optimization, and the ID is still there too. </p> http://stackoverflow.com/questions/1336167/dynamic-url-rewriting-with-iis6/1542616#1542616 0 Answer by KoolKabin for Dynamic URL Rewriting with IIS6 KoolKabin http://stackoverflow.com/users/178301 2009-10-09T08:43:41Z 2009-10-09T08:43:41Z <p>where do i write that rewriterule?</p>