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

Is it possible to export URL rewrite rules for IIS7?

I am setting up a duplicate of a website for internal use (testing) and want to duplicate all of the URL Rewrite rules without having to manually enter them.

There is an import option, but no obvious 'export'...

Thanks!

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

I think you have 2 options:

You could look in the web.config file, and copy the <rewrite> section, then paste into the web.config file on the new system.

Or, you could use appcmd to export the rules to a file, and to import them on the new system:

Export:

appcmd list config "websitename/appname" -section:system.webServer/rewrite/rules -xml > rewriterules.xml

Import:

appcmd set config -in < rewriterules.xml

You can also export any global rewrite rules using:

appcmd list config -section:system.webServer/rewrite/globalRules -xml > globalrewriterules.xml

The import command would be the same.

link|improve this answer
Cheers! I'm so used to working with Apache that I forgot about the web.config! Thanks again! – Matt Feb 16 '10 at 21:02
for info on using appcmd check out here: learn.iis.net/page.aspx/114/getting-started-with-appcmdexe/… – brendan Nov 2 '10 at 14:54
feedback

Your Answer

 
or
required, but never shown

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