Symfony2路由不起作用

时间:2016-09-19 10:12:31

标签: symfony routes

我创建了一个新的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').'/..'),
        ));
    }

在此之后,我已经使用相关路线创建了一些测试功能,但它不起作用。我错过了什么吗?

0 个答案:

没有答案