symfony 2 下如何配置多子域名 主 域名 www.xxx.com xxxcontroller 我只允许 test.xxx.com 域名访问。这种如何配置的?
2.2以上的才支持:
(一)单独指定至某一个action:
some_routing: path: /some_path host: "{host}.example.com" defaults: { _controller: SomeDemoBundle:Some:exampleAction }
(二)批量指定到一个Controller
先在这个Controller里用注解或者为其写yaml的routing,然后导入这一组routing,并统一限制host:
some_routing: resource: "@SomeDemoBundle/Resources/config/routing.yml" host: "host.example.com"
2.2以上的才支持:
(一)单独指定至某一个action:
(二)批量指定到一个Controller
先在这个Controller里用注解或者为其写yaml的routing,然后导入这一组routing,并统一限制host: