Я запустил новый проект веб-сайта Symfony 4.2.
Я создал два простых контроллера, отображающих два представления.
Первый localhost/
работает нормально, а второй localhost/home
выдает ошибку 404.
Я не понимаю, что происходит, все очень просто и основано на официальной документации.
rout.yaml file:
index:
path: /
controller: App\Controller\IntroController::introView
home:
path: /home
controller: App\Controller\HomeController::homeView
IntroController.php файл:
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
class IntroController extends AbstractController
{
public function introView()
{
return $this->render('intro.html.twig');
}
}
HomeController.php файл:
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
class HomeController extends AbstractController
{
public function homeView()
{
return $this->render('home.html.twig');
}
}
php bin / console debug: router команда:
-------------------------- -------- -------- ------ -----------------------------------
Name Method Scheme Host Path
-------------------------- -------- -------- ------ -----------------------------------
_twig_error_test ANY ANY ANY /_error/{code}.{_format}
_wdt ANY ANY ANY /_wdt/{token}
_profiler_home ANY ANY ANY /_profiler/
_profiler_search ANY ANY ANY /_profiler/search
_profiler_search_bar ANY ANY ANY /_profiler/search_bar
_profiler_phpinfo ANY ANY ANY /_profiler/phpinfo
_profiler_search_results ANY ANY ANY /_profiler/{token}/search/results
_profiler_open_file ANY ANY ANY /_profiler/open
_profiler ANY ANY ANY /_profiler/{token}
_profiler_router ANY ANY ANY /_profiler/{token}/router
_profiler_exception ANY ANY ANY /_profiler/{token}/exception
_profiler_exception_css ANY ANY ANY /_profiler/{token}/exception.css
index ANY ANY ANY /
home ANY ANY ANY /home
-------------------------- -------- -------- ------ -----------------------------------
apache sites-enabled.conf файл:
...
<VirtualHost *:80>
ServerName localhostczy
ServerAdmin webmaster@localhost
DocumentRoot /var/www/czyjestemladna/public
<Directory /var/www/czyjestemladna/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>