In other cms I could use nginx server configuration around these lines location /root_route_vue { rewrite ^(.*) /index.php?page_id=64; }
page_id 64 is the identifier of the page in which the js of the vue application is instantiating from.
Also, if I want to get a page I can also call him with the id (or other parameters) for example www.my-website.de/index.php?page_id=64;
but in NEOS, I’m not able to build a similar query to GET a page.
My question, is there a way to build such a query URL in NEOS?
You can do that with a custom route which identifies a node by its identifier and probably you directly use the NodeController that the frontend uses.
The route could look like this: /node/<identifier> for example or pass the identifier as node parameter.