0

ルートの問題の原因を突き止めることができなかったため、助けが必要です。

これが私のものrouting.ymlです:

gstyle39VideothequeBundle:
    resource: "@gstyle39VideothequeBundle/Resources/config/routing.yml"
    prefix: /videotheque

routing.ymlVideothequeBundle/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...

4

1 に答える 1

0

私見では、アプリケーションのグローバル routing.yml (app/config/routing.yml) にルーティング定義を追加していません。

https://github.com/drupalmk/Jobeetoで私のルーティング定義を見てください

于 2012-07-30T12:35:59.710 に答える