Symfony 3 Apache 500 Internal Server Error

血红的双手。 提交于 2019-12-03 08:57:26

Look like your problem is your cache hasn't been cleared in production. Run this command:

php bin/console cache:clear --env=prod

Then run:

php bin/console debug:router -e=prod

Which should show all your production routes. By the way running:

php bin/console

shows you all the commands you can run from the command line, if you need to look at anything else.

Hope this helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!