1
我是symfony的新手。從symfony中不工作的包導入的路由
所以我創建了一個包用的忍者/ UserBundle
命名空間在這個包我有一個路由配置,如下所示:
shinobi_user:
resource: "@ShinobiUserBundle/Controller"
type: annotation
和應用程序/配置/ routing.yml文件裏面我寫了下面像這樣:
shinobi_user:
resource: "@ShinobiUserBundle/Resources/config/routing.yml"
prefix: /
app:
resource: "@AppBundle/Controller/"
type: annotation
當我試圖去這個網址
它說/發現「GET /默認
沒有路由
這是我裏面ShinobiUserBundle控制器:
/**
* @Route("/default")
*/
class DefaultController extends Controller
{
/**
* @Route("/", name="user")
*/
public function indexAction()
{
return $this->render('ShinobiUIBundle:Default:index.html.twig');
}
}
我是什麼做錯了?
謝謝!