I'm developing a little application using Symfony2. I can access all routes with no problems in my dev environment:
http://symfony/app_dev.php/cp ("symfony" is in my hosts file to resolve to localhost)
However, as soon as I try and access it in the production environment, I just get a 404 error page:
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.
Is there something I need to change/do before I can view my application in production? I've not messed with any of the core files (kernel/bootstrap/app files, etc). I'm using Release Candidate 3.
./app/console cache:clear
or simply deleteprod
directory form./app/cache
) – Mabusecp
route. The production cache won't regenerate itself automatically, so if you add or change any code, you need to clear it to see the changes on prod. – Saltern