如何使用HTML从远程服务器打开文件

时间:2018-07-25 09:58:01

标签: html file remote-server

是否可以使用HTML从远程服务器打开文件?

我目前正在使用“文件”协议,因此不再受支持,因为无法找到使用HTML打开它的解决方案,因此我陷入了困境。

这是我当前的代码

<a href="file://\\SERVER\files\file.pdf" target="_blank">Open File</a>

1 个答案:

答案 0 :(得分:-1)

如果您未定义绝对地址,则html会在托管页面的服务器中搜索文件。

 //It means that there is a folder named images on the same location of your html page.
 <a href="/images/myFile.jpg">

 //It means that there is a folder in the parent folder of your html page named images on the same location of your html page.
 <a href="../images/myFile.jpg">

或者您可以定义一个绝对地址来下载或打开文件:

  <a href="http://yourdomain.com/images/myFile.jpg">