IIS下的大文件上傳web.config設(shè)置方法
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 |
有些可能會涉及到網(wǎng)站后臺的限制,需要在后臺改限制