I am a beginner with nginx and php, so please excuse my basic question.
For a RESTful based API (nginx + php) I would need some help with nginx configuration.
H
If someone else hit this page, there is solution I got for myself after a bit research:
location ~ ^/api/v0/(.*)/?$ { try_files $uri $uri/ /v0.php?req=$1&$args; }
Here I'm not limited with class/method structure and location seems more readable than rewrite.