Symfony Prod模式找不到" GET"

时间:2014-11-20 16:22:58

标签: php symfony

我想为我的symfony应用创建一个custum error404页面。 我在:

中创建了该文件
app/Resources/TwigBundle/views/Exception/error404.html.twig

清除缓存,我仍然获得404 symfony开发页面

No route found for "GET /ss"
404 Not Found - NotFoundHttpException
1 linked Exception: ResourceNotFoundException »

AppKernel.php

<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
public function registerBundles()
{
    $bundles = array(
        new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
        new Symfony\Bundle\SecurityBundle\SecurityBundle(),
        new Symfony\Bundle\TwigBundle\TwigBundle(),
        new Symfony\Bundle\MonologBundle\MonologBundle(),
        new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
        new Symfony\Bundle\AsseticBundle\AsseticBundle(),
        new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
        new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
        new Garcinia\SiteBundle\GarciniaSiteBundle(),
    );

    if (in_array($this->getEnvironment(), array('dev', 'test'))) {
        $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
        $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
    }

    return $bundles;
}

public function registerContainerConfiguration(LoaderInterface $loader)
{
    $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
}

}

网/ app.php

$kernel = new AppKernel('prod', true);
$kernel->loadClassCache();

0 个答案:

没有答案