2013-07-22 77 views
2

我想添加一組URL重寫規則,但只對網站我開發的發行版。VS 2012的Web.Config改造

我找到各種各樣的例子,如果我想改變說連接字符串值,但我無法找到如何添加東西做OT已經存在的主要web.config中的例子。

我需要的是添加system.WebServer下重寫節點。

+0

我敢肯定有人可以幫助,但它是有幫助的,以顯示你想在你的開發和prod配置。 –

+0

我所做的是從我的web配置文件中鏈接到外部配置文件,然後生成該配置文件。然後,我所要做的就是在生成配置文件後回收應用程序池。 – box86rowh

回答

1

您只需要在轉換過程中添加的標籤中使用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>