Laravel 自定义 storage:link
Laravel custom storage:link
我在: -> storage/app/ 中有一个文件夹,我需要创建一个符号 link.
自 php artisan storage:link
links -> storage/app/public with -> public/storage.
为不在 storage/app/public 中的文件夹创建符号 link 的最佳方法是什么?
或者我总是需要将图像保存在 storage/app/public?
您也可以手动创建符号链接。您可以为此使用 midnight commander 或 linux 命令。您可以使用命令 mc
打开午夜指挥官,您可以使用 linux 命令 ln
创建符号链接(参见:https://linuxize.com/post/how-to-create-symbolic-links-in-linux-using-the-ln-command/)
如果您需要进一步的帮助,请告诉我
我在: -> storage/app/ 中有一个文件夹,我需要创建一个符号 link.
自 php artisan storage:link
links -> storage/app/public with -> public/storage.
为不在 storage/app/public 中的文件夹创建符号 link 的最佳方法是什么?
或者我总是需要将图像保存在 storage/app/public?
您也可以手动创建符号链接。您可以为此使用 midnight commander 或 linux 命令。您可以使用命令 mc
打开午夜指挥官,您可以使用 linux 命令 ln
创建符号链接(参见:https://linuxize.com/post/how-to-create-symbolic-links-in-linux-using-the-ln-command/)
如果您需要进一步的帮助,请告诉我