Добрый вечер!
Решил поиграться с Silex с целью освоения Rest.
Сделал простейший файл как на оф. сайте
<?php
// web/index.php
require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application();
$app->get('/hello/{name}', function ($name) use ($app) {
return 'Hello '.$app->escape($name);
});
$app->run();
назвал его index.php и поместил в корневую папку test. (установлен LAMP)
вызываю
test/hello/world
Выдает 404:
Not Found
The requested URL /hello/world=dfdf was not found on this server.
Подскажите куда плыть?
PS: Забыл упомянуть тутда же положил .htaccess:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>