在html目录中我有2个域,
example1.com
example2.com
在他们两个中都有一个名为files
的文件夹example1.com/files
example2.com/files
我在这些文件夹中添加相同的视频文件,我的磁盘已满(因为我添加了两次相同的视频)
有没有办法创建一个shortcat示例我将文件添加到
HTML / example1.com /文件
和html / example2.com / files将使用example1
我试过这个命令
ln -s /html/example1.com/files /html/example2.com/files
但如果我访问example2.com/files/video.mp4
,我会收到此错误消息Forbidden
You don't have permission to access /services/tmp/1.html on this server.
Apache/2.2.15 (CentOS) Server at example2.com Port 80
是否还有其他命令可以执行此操作
答案 0 :(得分:0)
有简单的解决方案,只需运行此命令
mount --bind /html/example1.com/files /html/example2.com/files