I just downloaded a new copy of Symfony 2.4.1 on Debian 7.3.
The URL / Symfony / web / config.php opens correctly, but when I go to Configure, I get:
The requested URL /Symfony/web/app_dev.php/_configurator/ was not found on this server.
If I have a workaround and open the / Symfony / web / app _dev.php page is displayed, but a pop-up message appears:
An error occurred while loading the web debug toolbar (404: Not Found) Do you want to open the profiler?
If I accept, I get:
The requested URL /Symfony/web/app_dev.php/_profiler/54a8bf was not found on this server.
In other matters (for example, Symfony 2: 404 Not Found Error trying to open / app _dev.php ), people are advised to bother with the .htaccess file. I even tried to remove it, but it did not affect.
The Apache log file shows:
File does not exist: /var/www/Symfony/web/app_dev.php/_wdt/54a8bf, referer: http://wwwtest.di.unipi.it/Symfony/web/app_dev.php File does not exist: /var/www/Symfony/web/app_dev.php/_profiler/54a8bf
Thus, it seems that routing to any internal URL is out of order, despite the fact that the correct routing seems to be in place:
> app/console router:debug [router] Current routes Name Method Scheme Host Path _wdt ANY ANY ANY /_wdt/{token} _profiler_home ANY ANY ANY /_profiler/ _configurator_home ANY ANY ANY /_configurator/ ...
source share