制作时出错:/app/app/config/routing.yml

时间:2018-06-10 16:15:05

标签: symfony production

我有一个Symfony 3.3项目。 在我的debian本地,一切都很好。

但是在制作上......我有这个错误: 文件" /home/blabla/app/app/config/routing.yml"不存在。

我的主机配置为指向/ web文件夹。 / web文件夹的.htaccess是Symfony提供的原始文件夹。

这是我的app.php文件:

<?php

use Symfony\Component\HttpFoundation\Request;

require __DIR__.'/../vendor/autoload.php';

if (PHP_VERSION_ID < 70000) {
    include_once __DIR__.'/../var/bootstrap.php.cache';
}

$kernel = new AppKernel('prod', false);
if (PHP_VERSION_ID < 70000) {
    $kernel->loadClassCache();
}

//$kernel = new AppCache($kernel);
$kernel = new AppKernel('prod', true);


// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
//Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);

真的需要帮助,thx !!

1 个答案:

答案 0 :(得分:2)

问题出在.. app / app /config/routing.yml ..

对我来说,这是在我删除composer(json,lock)和package(json)文件时发生的。当您保留它们时,它们将按预期工作。