### Basic Infos - [x] This issue complies with the [issue POLICY doc](https://github.com/esp8266/Arduino/blob/master/POLICY.md). - [ ] I have read the documentation at [readthedocs](https://arduino-esp8266.readthedocs.io/en/latest) and the issue is not addressed there. - [x] I have tested that the issue is present in current master branch (aka latest git). - [x] I have searched the issue tracker for a similar issue. - [ ] If there is a stack dump, I have decoded it. - [ ] I have filled out all fields below. #### Platform - Hardware: ESP-12 - Core Version: - Development Env: Arduino IDE - Operating System: Windows ### Settings in IDE - Module: Wemos D1 mini (clone) - Flash Mode: DOUT - Flash Size: 4MB - lwip Variant: v2 Lower Memory - Reset Method: - Flash Frequency: 40Mhz - CPU Frequency: 80Mhz - Upload Using: SERIAL - Upload Speed: 921600 ### Problem Description In handleRedirect() function (line 44 of WebServer.ino), redirect URL should be changed from "/$update.htm" to "/$upload.htm". ### [MCVE](https://stackoverflow.com/help/mcve) Current Sketch ```cpp if (!LittleFS.exists(url)) { url = "/$update.htm"; } ``` ```cpp if (!LittleFS.exists(url)) { url = "/$upload.htm"; } ```