我做了一個「/」在我的路線格局:與下列動作的/路由模式總是讓我看到Symfony的歡迎頁面,而不是我的控制器
acme_store_index:
pattern:/
defaults: { _controller: AcmeStoreBundle:Default:index}
:
public function indexAction()
{
$message = $this->getDoctrine()
->getRepository('AcmeStoreBundle:Message')
->findAll();
return $this->render(
'AcmeStoreBundle:Default:index.html.twig',
array('message' => $message)
);
}
我也在Apache中設置了一個虛擬主機,聲明爲localhost的索引頁文件app_dev.php。 (這種方式,我不必一直在我的網址中包含它,當我正在做阿賈克斯呼叫等)
爲什麼我的/路線被忽略?
檢查'app/config/routing_dev.yml'並刪除路由條目 – Federkun 2013-02-23 09:59:27