在web.config
中,system.web
〉compilation[tempDirectory]
属性的等效属性是什么,但使用的是更新的system.webServer
而不是system.web
?
下面是我需要添加到我的web.config中的内容:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation tempDirectory="W:\vhosts\mysite.com\tmp" />
</system.web>
</configuration>
但是,我当前的web.config
依赖于system.webServer
,而不是system.web
,并且添加该属性会导致内部服务器错误500。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<urlCompression doDynamicCompression="true" doStaticCompression="true" dynamicCompressionBeforeCache="true"/>
<rewrite>
<rules>
<rule name="Angular Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="./index.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
1条答案
按热度按时间sczxawaw1#
compilation[tempDirectory]
依赖于system.web
,因此不能将其添加到system.webServer
中。但是
system.web
和system.webServer
可以同时存在于web.config中,它们不会导致冲突。