acrozes

Results 8 comments of acrozes

A more generic case: ``` hosts: en: [foo.com, www.foo.com] fr : fr.foo.com ```

I use a default redirect from foo.com to www.foo.com

For your case I dont find better than a project structured like: app_foo app_otherfoo ... web_foo web_otherfoo like that each project have its own config files ...

Change path in the web_*/app.php files

Temporary way to solve that bug ( and add a translation to "channel" requirements) : ``` use JMS\I18nRoutingBundle\Router\RouteExclusionStrategyInterface; use JMS\I18nRoutingBundle\Router\PatternGenerationStrategyInterface; use Symfony\Component\Translation\TranslatorInterface; use Symfony\Component\Routing\Route; use Symfony\Component\Routing\RouteCollection; use JMS\I18nRoutingBundle\Util\RouteExtractor; use Symfony\Component\Config\Loader\LoaderResolver;...

Personally: After this route, I have an other one for generic case: @Route("/{q}/", name="query") I think it is better to have 2 routes ... so presently I have for the...