I got a problem with routing in my application. My folder structure looks like:
- application
- css
- images
- js
- svc // Slim Application Folder
- index.php
- .htaccess
If I call a slim route http://www.mydomain.de/svc/hello/world I get an 404 Error from codeigniter. My htaccess in the root looks like this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
What can I do?