1

我已经设置了 symfony 的新项目。app_dev.php/register工作正常,但是当我切换到app.php/register然后出现错误

Oops! An Error Occurred

The server returned a "404 Not Found".

Something is broken. Please e-mail us at [email] and let us know what you were doing when 
this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.

我也有清除缓存,但仍然收到此错误。请给我解决方案我很着急,因为我的项目已经完成但现在我被困在这里无法在实时服务器上发布它

4

1 回答 1

5

如果您通过 app.php 访问它并收到该错误。您应该尝试设置 app.php 文件的调试方式。为此,您更改文件 web/app.php 中的以下行

$kernel = new AppKernel('prod', false);

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

这样 symfony 会告诉你问题出在哪里,我猜它与路由有关......

于 2012-12-07T07:34:56.323 回答