Github で Fabien のスケルトンを使用して、最初の Silex プロジェクトをセットアップしています: https://github.com/fabpot/Silex-Skeleton
何らかの理由で、このプロジェクトの vhost を作成できません。silex プロジェクトはサブディレクトリに残ります。
私のディレクトリ構造は次のようになります。
/my/example.com/htdocs/myapp/
../src/app.php
../cache
../config
../templates
../vendor
../web/index.php
URL からアプリにアクセスしたい: http://example.com/myapp/hello/Fabien/
.htaccess
htdocs/myapp にファイルを作成しました
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /myapp
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ web/index.php [L]
</IfModule>
今私は http://example.com/myapp/index.php/hello/Fabien/のような URL を持っています
index.php を取り除くにはどうすればよいですか?