IIS下的大文件上传web.config设置方法
2022-11-25 加入收藏
web.config文件,将maxAllowedContentLength的值改一下。
1 2 3 4 5 6 7 8 9 10 | <? xml version = "1.0" encoding = "UTF-8" ?> < configuration > < system.webServer > < security > < requestFiltering > < requestLimits maxAllowedContentLength = "1048576000" ></ requestLimits > </ requestFiltering > </ security > </ system.webServer > </configuration |
有些可能会涉及到网站后台的限制,需要在后台改限制