ルートの問題の原因を突き止めることができなかったため、助けが必要です。
これが私のものrouting.yml
です:
gstyle39VideothequeBundle:
resource: "@gstyle39VideothequeBundle/Resources/config/routing.yml"
prefix: /videotheque
routing.yml
でVideothequeBundle/Resources/config/
: _
VideothequeBundle_homepage:
pattern: /
defaults: { _controller: gstyle39VideothequeBundle:Videotheque:index }
私のコントローラー:
<?php
namespace gstyle39\VideothequeBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpFoundation\Response;
class VideothequeController extends Controller
{
public function indexAction()
{
return new Response("Kikoo");
}
}
私の場合、ルートを検出する「cache:clear」、「router:debug」を実行しました。
VideothequeBundle_homepage ANY /videotheque/
フォルダも手動で削除しましたapp/cache
...