Skip to content

Explain host per locale #13571

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1805,6 +1805,55 @@ with a locale. This can be done by defining a different prefix for each locale
;
};

Another common requirement is to host the website on a different domain
according to the locale. This can be done by defining a different host for each
locale.

.. versionadded:: 5.1

The ability to define an array of hosts was introduced in Symfony 5.1.

.. configuration-block::

.. code-block:: yaml

# config/routes/annotations.yaml
controllers:
resource: '../../src/Controller/'
type: annotation
host:
en: 'https://www.symfony.com'
nl: 'https://www.symfony.nl'

.. code-block:: xml

<!-- config/routes/annotations.xml -->
<?xml version="1.0" encoding="UTF-8" ?>
<routes xmlns="http://symfony.com/schema/routing"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/routing
https://symfony.com/schema/routing/routing-1.0.xsd">

<import resource="../../src/Controller/" type="annotation">
<host locale="en">https://www.symfony.com</host>
<host locale="nl">https://www.symfony.nl</host>
</import>
</routes>

.. code-block:: php

// config/routes/annotations.php
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;

return function (RoutingConfigurator $routes) {
$routes->import('../../src/Controller/', 'annotation')
->host([
'en' => 'https://www.symfony.com',
'nl' => 'https://www.symfony.nl'
])
;
};

.. _stateless-routing:

Stateless Routes
Expand Down