doumindang2416 2019-07-23 14:25
浏览 43
已采纳

CakePHP 3.7 Url正在添加查询字符串

Using cakephp 3.7 when clicked on the Navigation bar New url is added to query string of the Params, Here is the result

Link should redirect user to

http://merchant1.com/users/gallery

but in the browser address bar below it actually, redirect to

http://merchant1.com/users/merchant?redirect=%2Fhqusers%2Fgallery

Here is the Debug result of $this->request->params

Array (
    [controller] => users
    [action] => merchant
    [pass] => Array
        (
        )

    [plugin] => 
    [_matchedRoute] => /:controller/:action/*
    [?] => Array
        (
            [redirect] => /users/gallery
        )

    [_ext] => 
    [isAjax] =>  
)

Below is Auth config

$this->Auth->config([   
    'authenticate' => [
        'Form' => [                     
            'fields' => [
                'username' => 'email',
                'password' => 'password'
            ],
            'userModel' => 'Users'
        ]                           
    ],
    'loginAction' => [
        'controller' => 'users',
        'action' => 'login'
    ],
    'loginRedirect' => [
        'controller' => 'users',
        'action' => 'login'
    ],
    'logoutRedirect' => [
        'controller' => 'users',
        'action' => 'logout'
    ],              
    'storage' => [
        'className' => 'Session',
        'key' => 'Auth.users'
    ]
]);

What is wrong here.

  • 写回答

1条回答 默认 最新

  • doue9730 2019-07-24 11:45
    关注

    Found solution for the above issue

    I have to replaced

    $this->Auth->allow('gallery')

    to

    $this->Auth->allow(['gallery'])

    in the beforeFilter method of the controller.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Fluent udf 编写问题
  • ¥15 求合并两个字节流VB6代码
  • ¥15 Pyqt 如何正确的关掉Qthread,并且释放其中的锁?
  • ¥30 网站服务器通过node.js部署了一个项目!前端访问失败
  • ¥15 WPS访问权限不足怎么解决
  • ¥15 java幂等控制问题
  • ¥15 海湾GST-DJ-N500
  • ¥15 氧化掩蔽层与注入条件关系
  • ¥15 Django DRF 如何反序列化得到Python对象类型数据
  • ¥15 多数据源与Hystrix的冲突