解决Request Entity Too Large IIS请求筛选限制请求实体大小30M问题

虚拟空间 ,web.config里 

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="300000000" />
            </requestFiltering>
        </security>
    </system.webServer>
</configuration>

 

maxAllowedContentLength 默认 30000000 是30M

服务器,设置iis 请求筛选 编辑功能设置 

 

posted @ 2021-07-13 22:55  djiz  阅读(320)  评论(0编辑  收藏  举报