当我尝试在远程服务器上访问我的应用程序时,我得到了这个例外,尽管它在我的本地机器上运行良好。
正确的道路是..../app/config/config_dev.yml
但它表示..../app/app/config/config_dev.yml
答案 0 :(得分:2)
检查your_app_name_folder\app\config\config_dev.yml
:
4 framework:
5 router:
6: resource: "%kernel.root_dir%/config/routing_dev.yml"
7 strict_requirements: true
8 profiler: { only_exceptions: false }
答案 1 :(得分:0)
检查你的AppKernel.php,应该有两种方法:
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
}
public function getRootDir()
{
return __DIR__;
}
检查路径是否正确并清除缓存。 AppKernel应该在
中... /应用/ AppKernel.php