アプリケーションのルーティングで問題が発生しました。私のフォルダ構造は次のようになります。
- 応用
- CSS
- 画像
- js
- svc // スリム アプリケーション フォルダ
- index.php
- .htaccess
スリム ルートhttp://www.mydomain.de/svc/hello/worldを呼び出すと、 codeigniter から 404 エラーが発生します。ルートの htaccess は次のようになります。
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
私に何ができる?