### Current Behavior
POSTing credentials to MyFitnessPal's login endpoint retur…ns a 404.
### Expected Behavior
Under 1.3.4 it returns a 302 redirect and authentication cookies.
### Steps To Reproduce
Using my flow:
- Create credentials on MyFitnessPal (https://www.myfitnesspal.com/account/create)
- Add credentials to the inject node at the start of the flow
- Deploy flow to NodeRed
- Inject
- Watch the debug output
- http status should return 302 with a simple redirect html as the payload rather than 404 with the html of a 404 page
### Example flow
```
[{"id":"706f8b78.caf304","type":"tab","label":"Login Test","disabled":false,"info":""},{"id":"9f19cdc7.37621","type":"http request","z":"706f8b78.caf304","name":"Get Login","method":"GET","ret":"txt","paytoqs":"ignore","url":"https://www.myfitnesspal.com/account/login","tls":"","persist":false,"proxy":"","authType":"","x":100,"y":140,"wires":[["3587fd6f.9e1e42"]]},{"id":"3587fd6f.9e1e42","type":"html","z":"706f8b78.caf304","name":"Auth Token Extractor","property":"payload","outproperty":"authenticity_token","tag":"form.login > input[name='authenticity_token']","ret":"attr","as":"single","x":160,"y":200,"wires":[["80d18b85.901ac8"]]},{"id":"80d18b85.901ac8","type":"function","z":"706f8b78.caf304","name":"Prepare POST","func":"msg.token = msg.authenticity_token[0].value;\nmsg.url = \"https://www.myfitnesspal.com/account/login\";\nmsg.method = \"POST\";\nmsg.contentType = \"application/x-www-form-urlencoded\";\nmsg.payload = \"utf8=%E2%9C%93&authenticity_token=\" + encodeURIComponent(msg.token) + \"&username=\" + encodeURIComponent(msg.user) + \"&password=\" + encodeURIComponent(msg.password) + \"&remember_me=1\";\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":200,"y":260,"wires":[["a5d06021.66c82"]]},{"id":"a5d06021.66c82","type":"http request","z":"706f8b78.caf304","name":"POST","method":"use","ret":"txt","paytoqs":"ignore","url":"","tls":"","persist":false,"proxy":"","authType":"","x":270,"y":320,"wires":[["ce55b898.7b5558"]]},{"id":"27a14c06.19c8c4","type":"inject","z":"706f8b78.caf304","name":"Do It","props":[{"p":"payload"},{"p":"user","v":"","vt":"str"},{"p":"password","v":"","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payloadType":"date","x":90,"y":80,"wires":[["9f19cdc7.37621"]]},{"id":"ce55b898.7b5558","type":"debug","z":"706f8b78.caf304","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":290,"y":380,"wires":[]}]
```
### Environment
- Node-RED version: 2.0.5
- Node.js version: 14.17.?
- npm version: ?
- Platform/OS: Synology DS920+, Docker
- Browser: Brave 1.27.109