ZFCUser和bjyauthorize - 如何离开了着陆页授权(ZFCUser and bjy

2019-09-29 06:09发布

我建立一个封闭的网站,有一个登陆页面给大家。

我使用ZfcUserBjyAuthorize 。 一切正常,但现在我不知道如何可以排除我的应用程序的Application\Controller\Index::index操作。

在我module.bjyauthorize.global.php我告诉我的行动,不需要身份验证:

'BjyAuthorize\Guard\Controller' => array(
    array(
        'controller' => 'Application\Controller\Index',
        'action' => 'index',
        'roles' => array()
    ),
    // ...

但我仍得到转发到ZFCUser登录页面。

任何想法,我缺少什么?

编辑:

我与尝试了guest的作用,但到目前为止没有运气:

 'default_role'          => 'guest',
 'BjyAuthorize\Provider\Role\Config' => array(
     'guest' => array(),
     'user'  => array(
         'children' => array(
             'admin' => array(),
         ),
     ),
 ),

Answer 1:

:在有效BjyAuthorize 1.2.*

你必须让guest用户访问索引页:

'BjyAuthorize\Guard\Controller' => array(
    array(
        'controller' => 'Application\Controller\Index',
        'action' => 'index',
        'roles' => array('guest', 'user')
    ),
    // ...

你在你的问题中定义什么是全部拒绝吧。

由于BjyAuthorize的控制器Guard配置作为一个白名单 ,有没有办法允许访问的所有角色立刻现在。



文章来源: ZFCUser and bjyauthorize - How to leave out authorization for landing page