Viewing 1 replies (of 1 total)
  • Thread Starter devgroupejcl

    (@devgroupejcl)

    I was able to fix the problem with adding a default whitelist route

    add_filter(‘jwt_auth_default_whitelist’, ‘default_whitelist’);

    function default_whitelist($default_whitelist)
    {
    array_push($default_whitelist, ‘/wp-json/’);

    return $default_whitelist;
    }

Viewing 1 replies (of 1 total)

The topic ‘Conflict with Redirection plugin’ is closed to new replies.