views:

138

answers:

1

Hi guys, anyone know how to "make work" urlrewriter.net component on IIS 6 ? Actually i have this web.config section :

<section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />

And the rule is, for example:

<rewrite url="~/tag/(.+)" to="~/default.aspx?tag=$1" />

It's work on the ASP.NET Developmnet server, but not when i go to my shared hosting web site !!! :(

Thank you in advance !

+2  A: 

You need to ask your hosting provider to add a wildcard mapping to make the ASP.Net ISAPI handler execute for all requests.

Instructions (Scroll down to IIS6 Extension-less URLs)

SLaks
I'm not sure of your answer.. i've read on ScottGu blog that with url rewriting dll component, you don't need to change anything on the server !Are you sure ?
stighy
[Read it more carefully](http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx). He's talking about IIS 7. (only)
SLaks