Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Always get 404 error in Slim Framework when omitting index.php in URL

I created a test hello world Slim app following instructions here.

When I make this call I get a 404 error:

http://my_server/my_app/hello/John

In the other hand, when I make this call it works grand as I get a "Hello John" message:

http://my_server/my_app/index.php/hello/John

But, of course, I don't want index.php in my URLs... What can be wrong?

======= EDIT =======

I forgot creating .htaccess file like this (following Slim Framework documentation, and in same directory as index.php):

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

Now I get this error:

/physical_path_to_my_files/index.php was not found on this server
like image 827
German Latorre Avatar asked Sep 09 '12 22:09

German Latorre


3 Answers

If your htaccess file is in your /my_app directory, change your rules to:

RewriteEngine On

RewriteBase /my_app/

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

If it's in your document root, you need to append the path:

RewriteRule ^ /my_app/index.php [QSA,L]
like image 161
Jon Lin Avatar answered Nov 15 '22 17:11

Jon Lin


Can also change the .htaccess to the following: (I had a similar problem, and this solved it for me):

.htaccess:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ %{ENV:BASE}index.php [QSA,L]
like image 26
Guy Avatar answered Nov 15 '22 19:11

Guy


if Jon Lin solution doesn't work, means your .htaccess file not working. you can verify that my adding a garbage line like

RewriteEngine On
RewriteBase /loop/v1/

This is garbage line

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

this will produce 503 error if .htaccess working fine, else you won't get any error.

if you didn't get any error , change Allow none to Allow all in Directory section of apache conf file or Httpd.conf

like image 34
abhirathore2006 Avatar answered Nov 15 '22 17:11

abhirathore2006