How to create laravel storage symbolic link for production or sub domain system?

前端 未结 6 708
天涯浪人
天涯浪人 2021-02-04 02:41

When I worked on laravel local development server php artisan storage:link works fine for me. But when I transfer my site to production server then I saw my public

6条回答
  •  不要未来只要你来
    2021-02-04 03:17

    I solved this problem by another command for creating a symbolic link by terminal/cmd/shh:

    ln -s /path/to/laravel/storage/app/public /path/to/public/storage
    

    I solved this also Using laravel web route routes/web.php

    Route::get('/foo', function () {
        Artisan::call('storage:link');
    });
    

提交回复
热议问题