Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Route is in debug list but returns 404 in Symfony 4

Ok, so I just installed latest version Symfony 4. Run the browser after installation and a nice welcome greeting shows. All good!

Then I created a new controller using make:controller. I named this controller Client and is using Annotations, same with the other Default Controller. I configured the routing as follows:

/**
 * @Route("/client", name="client")
 */
public function index()
{
    // replace this line with your own code!
    return $this->render('@Maker/demoPage.html.twig', [ 'path' => str_replace($this->getParameter('kernel.project_dir').'/', '', __FILE__) ]);
}

I refreshed the browser and all good, no errors.

Then I manually typed the path into the browser to check if it's really working:

localhost:8000/client

Problem. The url returned standard apache 404

Not Found
The requested URL /client was not found on this server.

Apache/2.4.18 (Ubuntu) Server at new.staff-fdr.dev Port 80

The debug route sees this though:

-------------------------- -------- -------- ------ ------------------
  Name                       Method   Scheme   Host   Path   

 -------------------------- -------- -------- ------ -----------------
  client                     ANY      ANY      ANY    /client  
  index                      ANY      ANY      ANY    /       
  _twig_error_test           ANY      ANY      ANY    /_error/{code}.
like image 670
Riza Avatar asked Jan 31 '18 14:01

Riza


2 Answers

Missing .htaccess file.

composer config extra.symfony.allow-contrib true

composer req symfony/apache-pack
like image 87
malcolm Avatar answered Oct 18 '22 23:10

malcolm


I also had this issue and here are a couple of other ideas if this isn't working for you. One is to configure your web server as documented here. The optimized apache with mod_php worked for me:

https://symfony.com/doc/master/setup/web_server_configuration.html

Second, I didn't have mod rewrite enabled on my web server. This was ultimately the fix that got me up and going. Run:

sudo a2enmod rewrite

Then

sudo service apache2 restart

That should get you going.

like image 32
Johnny Wales Avatar answered Oct 18 '22 21:10

Johnny Wales