laravel图像网址没有重定向到主页

Hi everybody in my laravel project the url of any image like http://kemakon-app.com/storage/images/Screenshot_10.png is redirected to homepage storage link but still getting the error any idea why

     'local' => [
        'driver' => 'local',
        'root' => storage_path('app'),
                    'visibility'=> 'public',

    ],

    'public' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
        'url' => env('APP_URL').'/storage',
        'visibility' => 'public',
    ],