Я получаю 404 Not Found для всех запросов, которые не /. При нажатии smfony.test в браузерах веб-страница открывается без проблем. Но все, кроме symfony .test, приведет к 404 Not Found. Я искал несколько решений по переполнению стека ( Выпуск 1 , Выпуск 2 ), но не смог найти точную проблему. Похоже, с моей стороны это неверная конфигурация, потому что когда я запускаю debug: router, я получаю все URL:
jernej@blackbook:/var/www/html/symfart$ php bin/console debug:router
------------------- -------- -------- ------ --------------------------
Name Method Scheme Host Path
------------------- -------- -------- ------ --------------------------
_preview_error ANY ANY ANY /_error/{code}.{_format}
app_article_index GET ANY ANY /
app_article_save GET ANY ANY /article/save
app_article_hello GET ANY ANY /hello
------------------- -------- -------- ------ --------------------------
Внутри моего проекта (/ dir path / var / www/project/public) у меня также есть файл .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
# Determine the RewriteBase automatically and set it as environment variable.
RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
# If the requested filename exists, simply serve it.
# We only want to let Apache serve files and not directories.
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .? - [L]
# Rewrite all other queries to the front controller.
RewriteRule .? %{ENV:BASE}/index.php [L]
</IfModule>
Поскольку у меня нет большого опыта работы с Apache сервером, я скорее отмечу, что я также внес следующие изменения в конфигурацию Apache (/ etc / apache2 /sites-enabled/000-default.conf) для добавления проекта в URL:
<VirtualHost *:80>
ServerName symfony.test
DocumentRoot /var/www/html/project/public
</VirtualHost>
Я также добавил URL-адрес файла хоста в linux. А вот класс Controller:
<?php
namespace App\Controller;
use App\Entity\Article;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class ArticleController extends AbstractController {
/**
* @Route("/", methods={"GET"})
*/
public function index() {
$articles = array();
return $this->render('articles/index.html.twig', array('articles' => $articles));
}
/**
* @Route("/article/save", methods={"GET"})
*/
public function save() {
$entityManager = $this->getDoctrine()->getManager();
$article = new Article();
$article->setTitle('Article One');
$article->setBody('This is the body for article one');
$entityManager->persist($article);
$entityManager->flush();
return new Response('Saved an article with the id of ' + $article->getId());
}
/**
* @Route("/hello", methods={"GET"})
*/
public function hello() {
$articles = array();
return $this->render('articles/index.html.twig', array('articles' => $articles));
}
}
?>