Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get Slim Framework to work without having to put /index.php in the URL?

I am implementing Slim Framework for PHP and everything appears to be working just fine. However, the only way I can get it to work is by putting /index.php in the URL like this:

http://www.example.com/index.php/members/1

I want it to work like this:

http://www.example.com/members/1

I have a feeling it has something to do with my .htaccess but I'm not sure. Here is my .htaccess:

RewriteCond %{REQUEST_FILENAME} !-f
# RewriteRule ^ ./index.php [QSA,L]
RewriteRule ^ . [QSA,L]
like image 340
Progger Avatar asked Jul 19 '12 21:07

Progger


2 Answers

Restoring the commented (#) line and getting rid of the other one should help. When you downloaded Slim Framework, it originally had this in the .htaccess as well.

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ ./index.php [QSA,L]

Also, you should learn about writing rewrite rules, because you won't get far without it.

like image 184
kapa Avatar answered Sep 27 '22 17:09

kapa


I think this answer comes late, but following the information of this link http://docs.slimframework.com/routing/rewrite/
What I needed was to add the AllowOverride All statement to my virtual host configuration, and that worked for me.

like image 30
Ivan Altamirano Avatar answered Sep 27 '22 19:09

Ivan Altamirano