Klein PHP路由器 - 无法让它工作

i'm tryin to use Klein for some routing on my test webapp.

I have mod_rewrite enabled and that's my htaccess.

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

I'm using their Hello World example, but i get a 404 when i type 'localhost/mysite/hello-world'.

Can you help me? Thanks!

  1. Read the manual about this topic:

Sub Directory Installation: https://github.com/klein/klein.php/wiki/Sub-Directory-Installation

  1. Option: You can try to run it with PHP's built-in webserver:

$ cd [my-app-name]; php -S localhost:8080 -t public public/index.php