Dynamic URL Rewriting with IIS6 - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T04:38:15Zhttp://stackoverflow.com/feeds/question/1336167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1336167/dynamic-url-rewriting-with-iis60Dynamic URL Rewriting with IIS6jsims281http://stackoverflow.com/users/811822009-08-26T16:58:00Z2009-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#13364501Answer by Nick Berardi for Dynamic URL Rewriting with IIS6Nick Berardihttp://stackoverflow.com/users/172009-08-26T17:53:08Z2009-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&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#15426160Answer by KoolKabin for Dynamic URL Rewriting with IIS6KoolKabinhttp://stackoverflow.com/users/1783012009-10-09T08:43:41Z2009-10-09T08:43:41Z<p>where do i write that rewriterule?</p>