I'm trying to use Slim FrameWork by following documentation for the same, I configured mod_rewrite and installed mcryp;
If I call http://localhost/slim/books
I have: Not Found
If I call http://localhost/frame/index.php?books
it works!
What could that be.
This happens for the slim and flight , but not for Laravel .
Here's my .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php [QSA]
I'm using:
Apache / 2.4.10 (Ubuntu 14.04)
PHP Version 5.5.15RC1
Does anyone know what it could be?