指向 Samba 共享中目录的 HTML 链接,适用于 Internet Explorer 7/8
我希望我的 HTML 页面链接到 Samba 共享(协议 SMB/CIFS Windows 共享)中的目录。 在我的 HREF 中,我写了 file://server/Share2/folder3
大多数浏览器都能很好地处理它(安装共享并在folder3上打开文件管理器),但 Internet Explorer 7 和 Internet Explorer 8 除外,它们显示 < code>权限被拒绝甚至没有询问密码。 我应该在 IE7/8 的 HREF 中编写什么才能打开folder3?
笔记:
folder3
部分,它就可以正常工作。folder3
部分,则此方法可以正常工作。I want my HTML page to link to a directory in a Samba share (protocol SMB/CIFS Windows share).
In my HREF I wrote file://server/Share2/folder3
Most browsers handle it fine (mount the share and open a file manager on folder3) except Internet Explorer 7 and Internet Explorer 8, which say Permission denied
without even asking for a password.
What should I write in the HREF for IE7/8 to be able to open folder3?
Notes:
folder3
part.folder3
part.如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
file:// 链接的正确语法是:
所以在您的情况下尝试 file://server/Share2/folder3
The correct syntax for file:// links is:
So in your case try file://server/Share2/folder3
通过将共享添加到 IE 中的受信任站点来检查是否已修复此问题。
(例如,互联网选项安全、受信任的站点)
Check if this is fixed by adding the share to trusted sites in IE.
(Eg, internet options security, trusted sites)