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!
Sub Directory Installation: https://github.com/klein/klein.php/wiki/Sub-Directory-Installation
$ cd [my-app-name]; php -S localhost:8080 -t public public/index.php