I have the following files in my website
{website}/restserver/user-create.php?id=...
{website}/restserver/user-read.php
{website}/restserver/session-login.php
...
I'd like to access them using the following addresses
{website}/user/create?id=...
{website}/user/read?id=...
{website}/session/login?id=...
I think you get it. I need to use the two level path to build the filename, maintaining the querystring.
Is it possible?
Thanks!