up vote 5 down vote favorite
2
share [g+] share [fb]

Is it possible to move the rules created by the IIS7 rewrite module from the root web config into its own web config file like you can with appsettings and if so how?

link|improve this question

71% accept rate
Were you able to get this working? I'm still stumped... – willoller Oct 22 '09 at 6:09
feedback

1 Answer

I can't seem to get it working, but the way it's described is:

<rewrite>
   <rewriteMaps configSource="external.config">
   </rewriteMaps>
</rewrite>

Then in the external.config file add your rules:

<rewriteMaps>
  <rewriteMap ...
  ...
</rewriteMaps>

You have to do this with the entire rewriteMap**s** section: according to this forum post, you can't do this with the rewriteMap: http://forums.iis.net/t/1154113.aspx

link|improve this answer
Thanks, this works for me. – Meixger Nov 5 '09 at 14:25
1  
You also need a rewrite rule in place to pick up the mapping. <rule name="Rewrite Rule"> <match url=".*" /> <conditions> <add input="{StaticRewrites:{REQUEST_URI}}" pattern="(.+)" /> </conditions> <action type="Rewrite" url="{C:1}" /> </rule> </rules> – ScottE Apr 27 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

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