The page was not displayed because the request entity is too large on IIS

后端 未结 7 1889
时光取名叫无心
时光取名叫无心 2020-12-08 10:18

I\'m getting the following error while redirecting one page to another web page:

\"the page was not displayed because the request entity is too large.

相关标签:
7条回答
  • 2020-12-08 11:12

    I think this will fix the issue if you have SSL enabled:

    Setting uploadReadAheadSize in applicationHost.config file on IIS7.5 would resolve your issue in both cases. You can modify this value directly in applicationhost.config.

    1. Select the site under Default Web Site

    2. Select Configuration Editor

    3. Within Section Dropdown, select "system.webServer/serverRuntime"

    4. Enter a higher value for "uploadReadAheadSize" such as 1048576 bytes. Default is 49152 bytes.

    During client renegotiation process, the request entity body must be preloaded using SSL preload. SSL preload will use the value of the UploadReadAheadSize metabase property, which is used for ISAPI extensions

    Reference.

    0 讨论(0)
提交回复
热议问题