Hi, Local my project works fine(I have IIS 6) but on server I have IIS 7 and I get this error: 500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed. My web.config looks like: <configSections> <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" /> ... <httpModules > <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" /> ... <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules runAllManagedModulesForAllRequests="true"> <remove name="UrlRewriter"/> <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule"/> </modules> </system.webServer> <rewriter> <rewrite url="~/item/(.+)/(.+)" to="~/item.aspx?category=$1&title=$2"/> </rewriter> Code (markup): Thank you, Alina
Hi, It happens so many times you URL re writer DLL do not works on web server. Even I had same problem but later on I use the new feature introduced in ASP.Net called ASP.Net Routing. Provide same functionality without using external DLL. But for your problem I would like to suggest you take help from professional or a s p . n e t official forum. Definitely they will do for you. Thanks