Blogger Information
Blog 30
fans 0
comment 1
visits 24016
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
laravel上传linux服务器后需要重新创建一个软连接
Original
893 people have browsed it

最近在打包项目上传服务器后发现,在本地能正常使用的软连接无法使用了,发现需要重新在服务器上创建一个软连接。
一个小坑,做个笔记

Windows下(win7)

mklink /D D:\phpStudy\WWW\yii\school\teacher\web\uploads\public D:\phpStudy\WWW\yii\school\api\web\uploads\public
参数解析:

第一个参数:/D 创建软链接 不可或缺

第二个参数:D:\phpStudy\WWW\yii\school\teacher\web\uploads\public —-新生成的文件夹(原来不存在)

第三个参数:D:\phpStudy\WWW\yii\school\api\web\uploads\public  —-被链接的文件夹(原来已经存在)

Linux 下

ln -s original_dir create_soft_dir
参数解析:

第一个参数:-s 创建软连接

第二个参数:original_dir   —-被链接的文件夹(原来已经存在)

第三个参数:create_soft_dir —-新生成的文件夹(原来不存在)

windows 命令: mklink /d d:\xampp\htdocs\exam\public\storage d:\xampp\htdocs\exam\storage\app\public

linux ln -s 源文件 软连接文件夹(源文件的软连接被放到后面的文件夹下)

ln -s /home/wwwroot/XXX.com/storage/app/public/ /home/wwwroot/XXX.com/public/storage

可能只看一个看不懂,两个合着一起看,就明白了

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post