我在 Symfony 2.3 上工作,并MobileDetectBundle
在这个 symfony 版本上安装了它:
- (在我的 composer.json 中)
"suncat/mobile-detect-bundle": "0.10.3"
- (在packagist中)https://packagist.org/packages/suncat/mobile-detect-bundle#v0.10.3
我相应地配置了捆绑包
应用内核.php
new SunCat\MobileDetectBundle\MobileDetectBundle(),
config_mobile.yml
mobile_detect:
redirect:
full:
is_enabled: true # default false
host: http://page.com # with scheme (http|https), default null, url validate
status_code: 301 # default 302
action: redirect # redirect, no_redirect, redirect_without_path
mobile:
is_enabled: true
host: http://m.page.com
status_code: 301
action: redirect
tablet:
is_enabled: true
host: http://t.page.com
status_code: 301
action: redirect
switch_device_view:
save_referer_path: true
service:
mobile_detector: mobile_detect.mobile_detector.default
device_view_class: SunCat\MobileDetectBundle\Helper\DeviceView
request_listener_class: SunCat\MobileDetectBundle\EventListener\RequestListener
extension_class: SunCat\MobileDetectBundle\Twig\Extension\MobileDetectExtension
在我的service.yml
services:
mobile_detector: @mobile_detect.mobile_detector.default
在 app_mobile.php
$kernel = new AppKernel('mobile', false);
该捆绑包与mobiledetect
类一起使用。它们都存在于我的供应商中,所以我猜安装正确完成
我重新启动了我的服务器 PHP,清除了缓存,但它仍然没有显示我在 URL 中的重定向。
Symfony 是否有可能在某些情况下无法识别捆绑包?这取决于您的版本吗?