0

我需要使用我的 web.config xml 文件更改 maxRequestEntityAllowed 默认值所以我已将其添加到 xml:

<location path="gedaiapp">
   <system.webServer>
      <serverRuntime enabled="true" maxRequestEntityAllowed="524288000" />
   </system.webServer>
</location>

gedaiapp是我在iis上配置的站点。这样做我在尝试加载一些 css 文件时遇到内部服务器错误

关于如何解决这个问题的任何想法?我遵循了微软文档:

http://www.iis.net/configreference/system.webserver/serverruntime

4

1 回答 1

0

修复了添加的问题

<serverRuntime enabled="true" maxRequestEntityAllowed="524288000" />

直接到我在 c:\Windows\System32\inetsrv\config 找到的 applicationHost.config

于 2013-02-20T19:59:11.157 回答