vote up 3 vote down star
1

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?

flag

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

1 Answer

vote up 2 vote down

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|flag
Thanks, this works for me. – meiXger Nov 5 at 14:25

Your Answer

Get an OpenID
or

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