FINALLY FIXED!!
Since I’m using nginx all the solutions doesn’t worked for me.
I finally fixed the error adding the following lines to the nginx.conf (or file wich contains your server config)
location ~ ^/wp-json/ {
rewrite ^/wp-json/(.*?)$ /?rest_route=/$1 last;
}
I hope it will be useful for someone