我创建了一个新的symfony项目,但路由根本不起作用。
这是我的routing.yml
文件:
app:
resource: "@AppBundle/Controller/"
type: annotation
这是我的控制器的一部分:
class DefaultController extends Controller
{
/**
* @Route("/", name="homepage")
*/
public function indexAction(Request $request)
{
// replace this example code with whatever you need
return $this->render('default/index.html.twig', array(
'base_dir' => realpath($this->container->getParameter('kernel.root_dir').'/..'),
));
}
在此之后,我已经使用相关路线创建了一些测试功能,但它不起作用。我错过了什么吗?