klein / klein.php

A fast & flexible router
MIT License
2.66k stars 290 forks source link

subroute doesn't work #364

Closed guanbiao33 closed 7 years ago

guanbiao33 commented 7 years ago

api

it doesn't work, but $klein->respond('GET','/hello',function(){return 'hello';}) succeed. help me pls. http://api.dev/index.php/hello (success) http://api.dev/index.php/hello/go (404 not found)

guanbiao33 commented 7 years ago

i solved this problem. config nginx.conf: location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?$1 last; } }