в synfony4 я взял демонстрационное приложение symfony и хочу знать, как заставить defaultlocale 'en' перейти на мою домашнюю страницу, не выбирая предпочитаемый язык браузера 'fr'. Я просто хочу изменить выбор языка только вручную
SERVICE.yaml
parameters:
locale: 'en'
# This parameter defines the codes of the locales (languages) enabled in the application
app_locales: en|fr|de|es|cs|nl|ru|uk|ro|pt_BR|pl|it|ja|id|ca|sl|hr|zh_CN|bg|tr|lt
app.notifications.email_sender: anonymous@example.com
services:
# default configuration for services in *this* file
_defaults:
autowire: true # Automatically injects dependencies in your services.
autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.
bind: # defines the scalar arguments once and apply them to any service defined/created in this file
$locales: '%app_locales%'
$defaultLocale: 'en'
$emailSender: '%app.notifications.email_sender%'
FRAMEWORK.yaml
framework:
default_locale: 'en'
Я ожидал, что первое перенаправление будет 127.0.0.1:8000/en или 127.0.0.1:8000
.
Но фактический результат - 127.0.0.1:8000/fr
.