我制作了一个新的Symfony2捆绑包,并删除了Acme捆绑包。

然后,我创建了一个新的Controller(MainController.php):

<?php
namespace My\BlogBundle\Controller;

class MainController extends Controller
{
    /**
     * @Route("/", name="index")
     * @Template()
     */
    public function indexAction()
    {

        return array();
    }

还有一个简单的 View :(Main/index.html.twig)仅包含一个hello。我的routing.yml为空。当我运行整个项目时,我得到:
No route found for "GET /"
404 Not Found - NotFoundHttpException
1 linked Exception: ResourceNotFoundException »

这里有什么问题以及如何解决?

这是我的路由调试:
\Symfony>php app/console router:debug
[router] Current routes
Name                     Method Pattern
_wdt                     ANY    /_wdt/{token}
_profiler_search         ANY    /_profiler/search
_profiler_purge          ANY    /_profiler/purge
_profiler_info           ANY    /_profiler/info/{about}
_profiler_import         ANY    /_profiler/import
_profiler_export         ANY    /_profiler/export/{token}.txt
_profiler_phpinfo        ANY    /_profiler/phpinfo
_profiler_search_results ANY    /_profiler/{token}/search/results
_profiler                ANY    /_profiler/{token}
_profiler_redirect       ANY    /_profiler/
_configurator_home       ANY    /_configurator/
_configurator_step       ANY    /_configurator/step/{index}
_configurator_final      ANY    /_configurator/final

我还清除了缓存,但没有成功。

这是routes.yml:
my_blog:
    resource: "@MyBlogBundle/Resources/config/routing.yml"
    prefix:   /

并且MyBlogBundle/Resources/config/routing.yml中的routing.yml为空。

最佳答案

设置routes.yml的方式是,您从捆绑包中请求routing.yml文件。

如果要使用注释来管理捆绑中的路由,则必须通过以下方式编写routes.yml:

my_blog:
    resource: "@MyBlogBundle/Controller/MainController.php"
    prefix:   /
    type:     annotation

并且您的 Controller 需要包括Route中的FrameworkExtraBundle类:
<?php
namespace My\BlogBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;

class MainController extends Controller
{
    /**
     * @Route("/", name="index")
     * @Template()
     */
    public function indexAction()
    {
        return array();
    }
}

假设您已经安装了SensioFrameworkExtraBundle(http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html#installation)。

有关路线注释的更多信息:http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/routing.html

关于php - 为什么我的Symfony路线不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14427563/

10-13 06:40