与2012年Web.Config转型相比

本文关键字:转型 Config 2012年 Web | 更新日期: 2023-09-27 18:24:05

我正在尝试添加一组URL重写规则,但仅限于我正在开发的网站的发布版本。

如果我想更改连接字符串值,我会找到各种各样的例子,但我找不到如何添加主web.config中不存在的东西的例子。

我需要的是在系统下添加rewrite节点。Web服务器。

与2012年Web.Config转型相比

您只需要在转换期间添加的标记中使用xdt:Transform="Insert"属性。点击此处了解更多信息:http://msdn.microsoft.com/en-us/library/dd465326.aspx

您可以以以下示例为起点(这是我的Web.Release.config文件):

<?xml version="1.0"?>
<!-- For more information on using Web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
    <!-- Enable static content caching in release mode -->
    <system.webServer xdt:Transform="Insert">
        <staticContent>
            <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="5.00:00:00" cacheControlCustom="public" />
        </staticContent>
    </system.webServer>
</configuration>