Silex APP在子文件夹下

时间:2012-08-05 00:06:52

标签: php silex

我想在 localhost / mytestfolder / 上托管一个Silex应用程序,但正如我所注意到的,每次我路由一个我必须做的URL

$app->get('mytestfolder/myRoute' ...

我有没有办法配置路由器,所以我只做

$app->get('myRoute' ...

1 个答案:

答案 0 :(得分:2)

尝试将网页目录放在RewriteBase上

<IfModule mod_rewrite.c>
    Options -MultiViews

    RewriteEngine On
    RewriteBase /lolcollege/web
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ app/index.php [L]
</IfModule>