如果有人喜欢更简单的解决方案,尤其是在Linux(例如Ubuntu)上,则一个非常简单的方法是在htdocs文件夹中创建指向目标文件夹的符号链接。例如,如果我希望能够从名为“ / home / some / projects / testserver /”的文件夹提供文件,而我的htdocs位于“ / opt / lampp / htdocs /”中。只需创建一个符号链接,如下所示:
ln -s /home/some/projects/testserver /opt/lampp/htdocs/testserver
对于符号链接的作品的命令,如下所示:
ln -s target source
其中,
target - The existing file/directory you would like to link TO.
source - The file/folder to be created, copying the contents of the target. The LINK itself.
有关更多帮助,请参见ln --help来源:在Ubuntu中创建符号链接
这样就完成了。只需访问http:// localhost / testserver /
实际上,您甚至不需要重新启动服务器。