无法读取配置文件,因为它超过了最大文件大小

问题描述 投票:7回答:1

无法读取配置文件,因为它超出了最大文件大小。

我的错误是因为我的rewritemap.config文件大小超过250KB(带有IIS 7.5的Windows 2008 R2 SP1服务器)

configuration iis-7.5 windows-server-2008-r2 url-rewrite-module
1个回答
10
投票

如果您有权访问注册表,并且您确实需要大于250kb的文件,则可以更改注册表项中的值。

对于x32系统:

创建密钥:

HKLM\Software\Microsoft\InetStp\Configuration\

添加DWORD值:

MaxWebConfigFileSizeInKB

对于x64系统:

创建密钥:

HKLM\Software\Wow6432Node\Microsoft\InetStp\Configuration\

添加DWORD值:

MaxWebConfigFileSizeInKB

确保重新启动或重新启动应用程序池。 This answer to a related question也可能会激发灵感。

注意:如果没有密钥,您只需创建密钥即可。 how to create a key on regedit

其他替代方法是拆分.config文件。 http://forums.asp.net/t/1961321.aspx?Split+web+config+rewrite+rules+in+separate+file

© www.soinside.com 2019 - 2024. All rights reserved.