我正在 Github 上使用 Fabien 的骨架设置我的第一个 Silex 项目: https ://github.com/fabpot/Silex-Skeleton
由于某种原因,我无法为该项目创建虚拟主机,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/这样的网址
我怎样才能摆脱 index.php?