3
I’m trying to use the Slim Framework following the documentation for the same, configured mod_rewrite and installed mcryp;
If I call http://localhost/slim/books
have: Not Found
If I call http://localhost/frame/index.php?books
works!
What could that be.
This happens to the slim and Flight, but it does not happen to the Laravel.
Here 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?
The address is localhost/slim or /frame?
– bfavaretto