24

有没有办法在Symfony2中设置基于主机名的路由?

我在官方文档中没有找到有关此主题的任何内容。
http://symfony.com/doc/2.0/book/routing.html

我想根据给定的主机名路由请求:
foo.example.com
bar.example.com
{{subdomain}}.example.com

所以本质上,控制器将获取当前子域作为参数传递。

类似于 Zend 解决方案:http:
//framework.zend.com/manual/en/zend.controller.router.html#zend.controller.router.routes.hostname

$hostnameRoute = new Zend_Controller_Router_Route_Hostname(
    ':username.users.example.com',
    array(
        'controller' => 'profile',
        'action'     => 'userinfo'
    )
);
$plainPathRoute = new Zend_Controller_Router_Route_Static('');

$router->addRoute('user', $hostnameRoute->chain($plainPathRoute));

我希望这是可能的,但我只是以某种方式错过了它。
提前致谢!

4

6 回答 6

43

只是要指出,这现在已添加到 Symfony v2.2 - http://symfony.com/doc/master/components/routing/hostname_pattern.html中。

mobile_homepage:
    path:     /
    host:     m.{domain}
    defaults: { _controller: AcmeDemoBundle:Main:mobileHomepage }
    requirements:
        domain: %domain%

homepage:
    path:  /
    defaults: { _controller: AcmeDemoBundle:Main:homepage }
于 2013-01-30T17:15:37.390 回答
25

这是我的解决方案:

config.yml内部应用程序目录中添加以下行:

services:
   kernel.listener.subdomain_listener:
       class: Acme\DemoBundle\Listener\SubdomainListener
       tags:
           - { name: kernel.event_listener, event: kernel.request, method: onDomainParse }

然后将类创建SubdomainListener.php为:

<?php

namespace Acme\DemoBundle\Listener;

use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\EventDispatcher\Event;

class SubdomainListener
{
   public function onDomainParse(Event $event)
   {
       $request = $event->getRequest();
       $session = $request->getSession();

       // todo: parsing subdomain to detect country

       $session->set('subdomain', $request->getHost());
   }
}
于 2011-08-14T10:27:58.077 回答
2

我假设 symfony2 中的子域路由是根据主机名的子域部分选择定义的控制器的过程,会话变量无助于解析定义的控制器。

我在内核监听器中设置请求属性:_controller,像这样

$request->attributes->set('_controller','AcmeBundle:Demo:main');

这有助于路由到定义的控制器,但是我在开发环境中丢失了调试分析器,仍然无法检测到原因

于 2012-02-13T15:14:02.323 回答
2

或者在控制器中获取主机名:

class DefaultController extends PowmaController {

  /**
   * @Route("/test")
   */
  public function testAction() {
    return new Response( 'Hostname ' . $this->getRequestHostnameString() );
  }

  function getRequestHostnameString() {
    return $this->getRequest()->getHost();
  }
于 2012-03-07T21:08:49.950 回答
1

Symfony 1.2有一个插件可以添加这个功能。代码在一个文件中只有几百行,移植到 Symfony 2 应该不会太困难。但是 Sensio 的文档还没有。

您也不能在路由中包含子域并从控制器获取域并在那里处理它。我认为是这种方法:getHost()

于 2011-04-13T07:02:19.373 回答
0

这是一个处理多个域站点的包:https ://github.com/AppVentus/MultiDomainBundle

于 2013-06-26T08:38:52.097 回答