Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想允许用户使用我的 openWrt linux 的 Luci Web 用户界面下载一些文件。我已将文件上传到 openWrt 的 /etc 和 /tmp 文件夹中。但我不知道如何将这个上传文件的 url 提供给用户。谁能帮我 ?提前致谢
最简单的方法是在目录中创建指向此文件的符号链接/www。例如,下载/etc/passwd文件
/www
/etc/passwd
ln -s /etc/passwd /www/test
然后,在您的网络浏览器中,转到192.168.1.1/test下载文件。
192.168.1.1/test