Hello,
I am trying to integrate vue app into a neos page and in order for the vue router to function normally, one need to configure a server rewrite rule, hereby link on this topic https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations
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?