Closed raymundcuizon-dev closed 7 years ago
The issue was not in my php version. but on my nginx virtualhost config.
i fixed this issue by changing my config. From location / {
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
To location / {
# as directory, then fall back to displaying
try_files $uri $uri/ /index.php?_url=$uri&$args;
}
Hi Sir nerfe, I'm having issue on php 7.
after I setup everything. and try to run the http://api.phalconjwt it will return
{ "status": "error", "data": null, "message": "Route not Found!", "error": { "errorMessage": "Route not Found!" } }
but when try to add a route it will return 404
404 Not Found
I have phalcon 3.0.4.
Thanks you.