IIS7 urlrewrite 模块 - 外部 xml 文件中的规则
我正在使用 IIS7 UrlRewrite 模块。 我在 web.config
部分设置了规则。 我想知道是否有一种方法可以在一个外部 xml 文件而不是 web.config 文件中定义规则。 谢谢。
I'm using IIS7 UrlRewrite module.
I set up my rules in the web.config <system.webServer><rewrite>
section.
I want to know if there's a way to define the rules in one external xml file instead of in web.config file.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 configSource 属性来指向外部文件,就像使用其他 web.config 部分一样。在 web.config 中:
在规则配置文件中:
您甚至仍然可以使用 IIS 管理器来编辑规则,并且它会正常工作。这种方法的一个小警告是:当您进行更改并保存这样的外部文件时,它不会像更改 web.config 那样回收应用程序。因此,如果您正在编辑规则并希望看到它生效,则需要通过编辑并保存来手动修改 web.config。
另一个参考:将 IIS7 url 重写部分移出 web.config 文件< /a>
Yes, you can use the
configSource
attribute to point to an external file like you can with other web.config sections. In the web.config:And in the rules config file:
You can still even use the IIS manager to edit rules and it'll just work. One minor caveat with this approach: when you make a change and save an external file like this, it will not recycle the application like making a change to the web.config will. So if you're editing a rule and want to see it take effect, you need to manually poke the web.config by making an edit and saving it.
Another reference: Moving IIS7 url rewrite section out of the web.config file
您可以使用示例 URL 重写提供程序,其中包括将这些提供程序存储在单独的文件中,请参阅:
http:// /www.iis.net/learn/extensions/url-rewrite-module/using-custom-rewrite-providers-with-url-rewrite-module
You can use the sample URL Rewrite providers that include one for storing those in a separate file, see:
http://www.iis.net/learn/extensions/url-rewrite-module/using-custom-rewrite-providers-with-url-rewrite-module