2

我在 Symfony 2.3 上工作,并MobileDetectBundle在这个 symfony 版本上安装了它:

我相应地配置了捆绑包

应用内核.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 是否有可能在某些情况下无法识别捆绑包?这取决于您的版本吗?

4

1 回答 1

-2

尝试这个 :

mobile_detect:
redirect:
    mobile: ~
    tablet: ~
switch_device_view: ~
于 2017-10-19T10:56:58.050 回答