带有翻译的 Symfony 4,没有通往/没有 _locale 的路线

问题描述 投票:0回答:2

我创建了一个 Symfony 4.4.8 项目,其中包含英语和法语翻译,所以我按照以下步骤操作:
https://symfony.com/doc/current/translation.html

并设置:

config/packages/translation.yaml

framework:
    default_locale: 'fr'
    translator:
        default_path: '%kernel.project_dir%/translations'
        fallbacks: ['en', 'fr']

config/routes/annotations.yaml

controllers:
    resource: ../../src/Controller/
    type: annotation
    prefix: /{_locale}/
    requirements:
        _locale: fr|en

和一个 src/Controller/HomeController.php

class HomeController extends AbstractController
{
    private $session;
    
    public function __construct(SessionInterface $session)
    {
        $this->session = $session;
    }

    /**
     * @Route("/", name="home")
     */
    public function index() {
        return $this->render('home/index.html.twig', [
            'controller_name' => 'HomeController',
        ]);
        
    }

我的翻译文件位于 translations 文件夹中,当我运行 localhost:8000/frlocalhost:8000/en 时,它工作正常,显示了我的 home/index.html.twig

问题是当我运行 localhost:8000/ 时,它向我显示默认的 Welcome to Symfony 页面,其中显示“您看到此页面是因为您尚未配置任何主页 URL。”

适用于 sf2 的这个解决方案适用于 sf4 吗?
有谁知道怎么解决吗

我还测试了将 HomeController 中的路线更改为:

@Route("/{_locale}", name="home", defaults={"_locale"="fr"}

但它返回异常:
Route pattern "/{_locale}/{_locale}" cannot reference variable name "_locale" more than once.

symfony translation symfony4
2个回答
0
投票

解决方法,添加:

RedirectMatch ^/$ /fr

在我的虚拟主机中(带有 apache2 服务器)

纯 symfony 解决方案应该更好!


0
投票

我猜路由配置不好。我不记得我们可以通过在 URL 中添加区域设置代码来设置区域设置的默认行为,所以我猜这是您添加的内容;)

Symfony 按照与声明路由相同的顺序解析路由。因此,一种解决方案是导入两次相同的路由,但带有前缀:

# config/route.yaml
app_front:
    type: annotation
    resource: '../src/Controller/*.php'
    prefix: /
    options:
        expose: true

app_localized_front:
    type: annotation
    resource: '../src/Controller/*.php'
    name_prefix: localized_
    prefix: /{locale}
    options:
        expose: true

我知道以前的配置有效,但我不知道这是否是更优雅的方法:)

© www.soinside.com 2019 - 2024. All rights reserved.