Error 404 with http request to a static IP server with web browser

Hi there,
I'm trying to make http request to a static IP server (web browser available); I'm having this reply
"

404 Error

The requested resource cannot be found."

Do anyone already faced this reply and know how to deal with or why I get that?

Thanks for your help

Below my flow in the likely case I did a mistake!

[{"id":"a74bc371.77458","type":"http request","z":"4431ea1b.c72c54","name":"","method":"GET","ret":"txt","paytoqs":false,"url":"http://192.168.1.12/body.html","tls":"","proxy":"","authType":"","x":398.00000762939453,"y":105.00000190734863,"wires":[["7fb43890.d2ecb8"]]}]

What happens if, on the machine running node red, you put into a web browser the URL
http://192.168.1.12/body.html

The error is really clear that the endpoint cannot be found.

So "/body.html" is not reachable on the web server at 192.168.1.12 port 80.

The web server has responded so you have a network path to it.

The photo below should replies both

if I tried to reach body.html via the flow below I get error:404; next step would be try this with other web browser server... but I'm still searching the reason why with this is not properly working.

[{"id":"4431ea1b.c72c54","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"a74bc371.77458","type":"http request","z":"4431ea1b.c72c54","name":"","method":"GET","ret":"txt","paytoqs":false,"url":"http://192.168.1.12/body.html","tls":"","proxy":"","authType":"","x":398.00000762939453,"y":105.00000190734863,"wires":[["7fb43890.d2ecb8"]]},{"id":"adfd18eb.b5b588","type":"debug","z":"4431ea1b.c72c54","name":"","active":true,"tosidebar":true,"console":true,"tostatus":false,"complete":"payload","targetType":"msg","x":762.0000076293945,"y":105.00000190734863,"wires":[]},{"id":"7fb43890.d2ecb8","type":"ui_template","z":"4431ea1b.c72c54","tab":"a3f85942.f52928","name":"","group":"","order":1,"format":"{{msg.payload}}","storeOutMessages":true,"fwdInMessages":true,"x":566.6000099182129,"y":104.78750228881836,"wires":[["adfd18eb.b5b588"]]},{"id":"364f1b4b.250474","type":"inject","z":"4431ea1b.c72c54","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":230.60000610351562,"y":106.00000190734863,"wires":[["a74bc371.77458"]]},{"id":"a3f85942.f52928","type":"ui_tab","z":"","name":"Home","icon":"dashboard","order":"1"}]

Unfortunately your flow isn't currently importable.Please read the following post How to share code or flow json and then edit the above message. ( moved to #general as this isn't sharing a completed project)

I think you will need to check the results from the browser again to see if the web page is checking for something hidden like a cookie or some kind of header.

Remember that a request from Node-RED is not as "intelligent" as a request from a browser which has lots of clever things built in to make life easy for users.