Unrecognized configuration section rewriter

Posted by Cristian Boariu on Stack Overflow See other posts from Stack Overflow or by Cristian Boariu
Published on 2010-06-03T20:46:06Z Indexed on 2010/06/03 20:54 UTC
Read the original article Hit count: 450

Filed under:
|
|

Hi guyrs,

I'm trying to implement Approach 3 from this Url Rewriting article.

I've added all the required configuration (in web.config for the UrlRewriter module) but when i try to add this in web.config:

<rewriter>
    <rewrite url="~/products/(.+)" to="~/products.aspx?category=$1" />
  </rewriter>
</configuration>

it gives me:

Unrecognized configuration section rewriter...

Please let me know me WHY it tells me that i put in the wrong place that rewriter xml node?

Thanks...

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET