Thanks sonnyyu, that is exactly what I did to solve the problem, even if I have to send also some json data so I did something like this: http://192.168.0.100/arduino/do/123/{"data1":1, "data2":2}/
Now I was thinking this: at the moment I am writing all of my code on the mcu side, keeping the Linino side unused, and I am hitting some memory problems on the mcu.
My idea would be to use as much as possible the Linino side (for the communication and data processing for example) and use the mcu side only for the hardware-related stuff (control of the pins for example). So I am wondering which is the best framework to intercept web service requests in order to process them and then pass only the necessary informations to the mcu. This would also simplify the transmission of json data because it can be inserted in the request as payload avoiding putting it in the URL as above.
At the beginning I thought to use node.js but it requires installation so now I am looking at some python solutions.
Any advise in this direction is welcomed.