摘要:解決IIS7 Request Too Long的問題
事情是這樣的
原本的網頁是用暱名存取,所以,在IE/firebox/chrome均很正常,某一天,改成windows驗證後,且用chrome開網頁時會出現
Bad Request - Request Too Long. HTTP Error 400. The size of the request headers is too long. 的錯誤訊息,不過在IE及firefox仍是正常的
google後的解法如下:
1. 在HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters增加兩個參數
1.1 添加類型為 DWORD(32-bit)、名為 MaxFieldLength、值為十進制 32768 的項目;
1.2 添加類型為 DWORD(32-bit)、名為 MaxRequestBytes、值為十進制 32768 的項目。
2. 重啟服務
2.1 net stop http
2.2 net start http
2.3 iisreset
參考網頁: http://www.cnblogs.com/dudu/archive/2012/08/26/iis_request_too_long_maxrequestbytes.html