Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Silex アプリケーションをlocalhost/mytestfolder/でホストしたいのですが、気がついたように、URL をルーティングするたびにやらなければならない
$app->get('mytestfolder/myRoute' ...
ルーターを構成する方法はありますか?
$app->get('myRoute' ...
Web ディレクトリを RewriteBase に配置してみてください
<IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteBase /lolcollege/web RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ app/index.php [L] </IfModule>