vote up 1 vote down star
2

Hi,

i'm using ASP.net with .NET 3.5 on IIS7 (Vista) with the URL Rewrite Module from Microsoft.

This means, that i have a

<system.webServer>
    <rewrite>...</rewrite>
    ...
</system.webServer>

section within the web.config, but i get a warning, that within the system.webServer the element "rewrite" is not allowed.

How can i configure my system to allow (and maybe even have Intellisense) on the rewrite-part of the web.config?

Thank you Christoph

flag

4 Answers

vote up 0 vote down

Did you find a solution for this? I'm working on the same problem. Thanks!

link|flag
nope, i didnt got any solution for this :-( – Christoph Jan 28 at 15:31
vote up 0 vote down

I believe you need to have the URL Rewrite Module "installed" within the web.config file on your system.

You either need to install the module on your application via the IIS 7.0 interface or have your hosting firm do it for you.

link|flag
nope, i installed the Rewrite Module several times on several Mashines (Vista and Win7) via the Web Platform Installer 2.0 and the native Installer from IIS.net – Christoph May 22 at 14:58
vote up 0 vote down

Hello

What is the solution?

thanks

link|flag
Hello Alain, i have still no solution for the Problem. Maybe VS2010+IIS7.5 will fix this... – Christoph Oct 29 at 15:20
vote up 0 vote down

I believe you need to define the module in your web.config like this:

<system.webServer>
    <modules>
        <add name="UrlRewriteModule" type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter" />
    </modules>
</system.webServer>

Update: Intellisense can be setup here:

http://ruslany.net/2009/08/visual-studio-xml-intellisense-for-url-rewrite-1-1/

Update: Verify that the sectionGroup is identified in %systemroot%\system32\inetsrv\config\applicationHost.config:

<sectionGroup name="rewrite">
    <section name="rules" overrideModeDefault="Allow" />
    <section name="globalRules" overrideModeDefault="Deny" allowDefinition="AppHostOnly" />
    <section name="rewriteMaps" overrideModeDefault="Allow" />
</sectionGroup>
link|flag
Hi, i actually have this (for rewrite 2,.0): <sectionGroup name="rewrite"> <section name="rules" overrideModeDefault="Allow" /> <section name="globalRules" overrideModeDefault="Deny" allowDefinition="AppHostOnly" /> <section name="outboundRules" overrideModeDefault="Allow" /> <section name="providers" overrideModeDefault="Allow" /> <section name="rewriteMaps" overrideModeDefault="Allow" /> </sectionGroup> but the problem still exists... – Christoph Dec 3 at 10:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.