IIS7 urlrewrite 模块 - 外部 xml 文件中的规则

发布于 2024-09-24 10:20:35 字数 178 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈场末日恋爱 2024-10-01 10:20:35

是的,您可以使用 configSource 属性来指向外部文件,就像使用其他 web.config 部分一样。在 web.config 中:

<rewrite>
    <rules configSource="Rewrite.config" />
</rewrite>

在规则配置文件中:

<rules>
    <rule name="some rule">
        <!-- rule details here --->
    </rule>
</rules>

您甚至仍然可以使用 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:

<rewrite>
    <rules configSource="Rewrite.config" />
</rewrite>

And in the rules config file:

<rules>
    <rule name="some rule">
        <!-- rule details here --->
    </rule>
</rules>

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

舞袖。长 2024-10-01 10:20:35

您可以使用示例 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文